Skip to main content
PUT
/
api
/
contact-metrics
/
config
Update category configuration
curl --request PUT \
  --url https://your-instance.example.com/api/contact-metrics/config \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "categories": [
    {
      "name": "<string>",
      "key": "<string>",
      "statuses": [
        "<string>"
      ],
      "color": "<string>"
    }
  ],
  "allowMultipleCategories": true,
  "pipelineId": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
categories
object[]
required
allowMultipleCategories
boolean
pipelineId
string

Response

Metrics config updated

Generic response envelope. Endpoint-specific fields are intentionally open.