v4

OpenAPI 3.1.02026-07-3163216290.7 KB
Components

List components

Retrieve a paginated list of email components.

get/v1/components

Query parameters

perPagestring

How many results to return in each request. Must be between 10 and 50. Default is 20.

cursorstring

A cursor to return a specific page of results. Cursors can be found from the pagination.nextCursor value in each response.

Response

Successful.

Example response

{
  "pagination": {
    "totalResults": 2,
    "returnedResults": 2,
    "perPage": 20,
    "totalPages": 1,
    "nextCursor": null,
    "nextPage": null
  },
  "data": [
    {
      "id": "clp2o4i6u8y0t5r3e1w7q9s1",
      "name": "Header",
      "lmx": "<Paragraph>Welcome to Acme</Paragraph>"
    }
  ]
}