POST /channel-custom-fields.json

POST /channel-custom-fields.json
application/json

Body Required

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
POST /channel-custom-fields.json
curl \
 --request POST 'http://api.example.com/v1/channel-custom-fields.json' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"channelId":42,"customFieldId":42,"purpose":"name"}'
Request examples
{
  "channelId": 42,
  "customFieldId": 42,
  "purpose": "name"
}
Response examples (200)
{
  "channelId": 42,
  "createdAt": "2025-05-04T09:42:00Z",
  "customFieldId": 42,
  "id": 42,
  "purpose": "name",
  "updatedAt": "2025-05-04T09:42:00Z"
}