Kit · Schema
List email templates Response
Email MarketingCreator EconomySubscribersAutomationNewslettersSequencesFormsBroadcasts
Properties
| Name | Type | Description |
|---|---|---|
| email_templates | array | |
| pagination | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/convertkit/main/json-schema/list_email_templates_response.json",
"title": "List email templates Response",
"x-tag": "Email Templates",
"type": "object",
"properties": {
"email_templates": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"is_default": {
"type": "boolean"
},
"category": {
"type": "string"
}
},
"required": [
"id",
"name",
"is_default",
"category"
]
}
},
"pagination": {
"type": "object",
"properties": {
"has_previous_page": {
"type": "boolean"
},
"has_next_page": {
"type": "boolean"
},
"start_cursor": {
"type": "string"
},
"end_cursor": {
"type": "string"
},
"per_page": {
"type": "integer"
}
},
"required": [
"has_previous_page",
"has_next_page",
"start_cursor",
"end_cursor",
"per_page"
]
}
},
"required": [
"email_templates",
"pagination"
]
}