Kit · Schema
Create a sequence email Response
Email MarketingCreator EconomySubscribersAutomationNewslettersSequencesFormsBroadcasts
Properties
| Name | Type | Description |
|---|---|---|
| object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/convertkit/main/json-schema/create_a_sequence_email_response.json",
"title": "Create a sequence email Response",
"x-tag": "Sequence Emails",
"type": "object",
"properties": {
"email": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"sequence_id": {
"type": "integer"
},
"subject": {
"type": "string"
},
"preview_text": {
"nullable": true
},
"email_address": {
"type": "string"
},
"email_template_id": {
"nullable": true
},
"published": {
"type": "boolean"
},
"position": {
"nullable": true
},
"delay_value": {
"type": "integer"
},
"delay_unit": {
"type": "string"
},
"send_days": {
"type": "array",
"items": {
"type": "string"
}
},
"content": {
"nullable": true
}
},
"required": [
"id",
"sequence_id",
"subject",
"preview_text",
"email_address",
"email_template_id",
"published",
"position",
"delay_value",
"delay_unit",
"send_days",
"content"
]
}
},
"required": [
"email"
]
}