v1
latestOpenAPI 3.1.02026-07-2420077.8 KBCost centers
Create cost center
Creates a cost center with the specified name. You can optionally set an approver, delegate, and delegate expiry date.
post/cost_centers
Headers
Authorizationstring required
Your Perk API key
Request body
Example request
{
"name": "Marketing",
"approver_id": 123,
"delegate_id": 456,
"delegate_expiry": "2025-12-31",
"erp_code": "CC-4210"
}Response
Returns '200 OK' and the newly created cost center resource.
Example response
{
"id": "4",
"name": "Marketing",
"approver_id": 123,
"approver": {
"id": 123,
"first_name": "Alex",
"last_name": "Chen",
"email": "alex.chen@company.com"
},
"delegate_id": 456,
"delegate": {
"id": 456,
"first_name": "Jordan",
"last_name": "Smith",
"email": "jordan.smith@company.com"
},
"delegate_expiry": "2025-12-31",
"erp_code": "CC-4210"
}