Kit · Example Payload

Bulk Create Tags

Email MarketingCreator EconomySubscribersAutomationNewslettersSequencesFormsBroadcasts

Bulk Create Tags is an example object payload from Kit, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarymethodpathtagrequest_bodyresponse

Example Payload

Raw ↑
{
  "summary": "Bulk create tags",
  "method": "POST",
  "path": "/v4/bulk/tags",
  "tag": "Tags",
  "request_body": {
    "tags": [
      {
        "name": "string"
      }
    ],
    "callback_url": "string"
  },
  "response": {
    "tags": [
      {
        "id": 1,
        "name": "string",
        "created_at": "string"
      }
    ],
    "failures": [
      null
    ]
  }
}