Kit · Example Payload

Update A Custom Field

Email MarketingCreator EconomySubscribersAutomationNewslettersSequencesFormsBroadcasts

Update A Custom Field 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": "Update a custom field",
  "method": "PUT",
  "path": "/v4/custom_fields/{id}",
  "tag": "Custom Fields",
  "request_body": {
    "label": "string"
  },
  "response": {
    "custom_field": {
      "id": 1,
      "name": "string",
      "key": "string",
      "label": "string"
    }
  }
}