post https://{subdomain}.pinpointhq.com/api/v1/departments
Request format
In order to create a department you must send a JSON:API spec JSON object representing a department.
Required attributes
As a bare minimum, name
, must be supplied.
Examples
{
"data": {
"type": "departments",
"attributes": {
"name": "Software Development"
}
}
}