Bulk create custom fields
documentedCreate multiple custom fields in a single request.
POST /v4/bulk/custom_fieldsCustom Fieldsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.kit.com/v4/bulk/custom_fields" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"custom_fields": [{"label": "{{$label1}}"}, {"label": "{{$label2}}"}, {"label": "{{$label3}}"}], "callback_url": {{$callback_url}}}'