Create a department

POST/support/departments

Creates a support department with the given name.

The response includes a Location header pointing to the new department.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Header Parameters

Idempotency-Key*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/support/departments" \  -H "Idempotency-Key: string" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
Empty