Kit · Schema

Update tag name Response

Email MarketingCreator EconomySubscribersAutomationNewslettersSequencesFormsBroadcasts

Properties

Name Type Description
tag object
View JSON Schema on GitHub

JSON Schema

update_tag_name_response.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/convertkit/main/json-schema/update_tag_name_response.json",
  "title": "Update tag name Response",
  "x-tag": "Tags",
  "type": "object",
  "properties": {
    "tag": {
      "type": "object",
      "properties": {
        "id": {
          "type": "integer"
        },
        "name": {
          "type": "string"
        },
        "created_at": {
          "type": "string"
        }
      },
      "required": [
        "id",
        "name",
        "created_at"
      ]
    }
  },
  "required": [
    "tag"
  ]
}