Kit · Schema

Get a post Response

Email MarketingCreator EconomySubscribersAutomationNewslettersSequencesFormsBroadcasts

Properties

Name Type Description
post object
View JSON Schema on GitHub

JSON Schema

get_a_post_response.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/convertkit/main/json-schema/get_a_post_response.json",
  "title": "Get a post Response",
  "x-tag": "Posts",
  "type": "object",
  "properties": {
    "post": {
      "type": "object",
      "properties": {
        "id": {
          "type": "integer"
        },
        "publication_id": {
          "type": "integer",
          "description": "Identifier of the underlying publication. Posts that were also sent as broadcasts share the same `publication_id` \u2014 use it to match a post to its broadcast via `GET /v4/broadcasts`."
        },
        "created_at": {
          "type": "string"
        },
        "title": {
          "type": "string"
        },
        "slug": {
          "type": "string"
        },
        "description": {
          "nullable": true
        },
        "meta_description": {
          "nullable": true
        },
        "status": {
          "type": "string"
        },
        "published_at": {
          "type": "string"
        },
        "sent_at": {
          "nullable": true
        },
        "thumbnail_alt": {
          "nullable": true
        },
        "thumbnail_url": {
          "nullable": true
        },
        "is_paid": {
          "type": "boolean"
        },
        "public_url": {
          "type": "string"
        },
        "content": {
          "type": "string"
        }
      },
      "required": [
        "id",
        "publication_id",
        "created_at",
        "title",
        "slug",
        "description",
        "meta_description",
        "status",
        "published_at",
        "sent_at",
        "thumbnail_alt",
        "thumbnail_url",
        "is_paid",
        "public_url",
        "content"
      ]
    }
  },
  "required": [
    "post"
  ]
}