GenPages

List the page templates available to a workspace.

Two kinds come back. workspace templates were built by this account in the GenPage dashboard; premade ones ship with GenPage and are available to everyone. Either can be applied to a campaign.

get/api/external/v1/templates/get-list

Query parameters

workspace_idinteger required

The workspace to list for.

Example:55

The workspace to list for.

searchstring nullable

Match on template name.

Example:saas

Match on template name.

Response

object[] required

Example response

[
  {
    "template_id": 88,
    "name": "SaaS outbound",
    "description": "Hero, social proof, single CTA",
    "source": "workspace"
  },
  {
    "template_id": 12,
    "name": "Minimal landing",
    "description": null,
    "source": "premade"
  }
]

Changes