Kit · Schema

Bulk update subscriber custom field values Request

Email MarketingCreator EconomySubscribersAutomationNewslettersSequencesFormsBroadcasts

Properties

Name Type Description
custom_field_values array
callback_url object
View JSON Schema on GitHub

JSON Schema

bulk_update_subscriber_custom_field_values_request.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/convertkit/main/json-schema/bulk_update_subscriber_custom_field_values_request.json",
  "title": "Bulk update subscriber custom field values Request",
  "x-tag": "Custom Fields",
  "type": "object",
  "properties": {
    "custom_field_values": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "subscriber_id": {
            "type": "integer",
            "nullable": true
          },
          "subscriber_custom_field_id": {
            "type": "integer"
          },
          "value": {
            "type": "string"
          }
        },
        "required": [
          "subscriber_id",
          "subscriber_custom_field_id",
          "value"
        ]
      }
    },
    "callback_url": {
      "nullable": true
    }
  },
  "required": [
    "custom_field_values",
    "callback_url"
  ]
}