v1
latestOpenAPI 3.1.02026-07-2420077.8 KBCost centers
Update cost center
Updates a cost center. You can update the name, archive status, approver, delegate, and delegate expiry. Passing 'null' for 'approver_id', 'delegate_id', or 'delegate_expiry' does not clear those fields; they remain unchanged
patch/cost_centers/{id}
Path parameters
idstring required
The unique ID of the cost center
Headers
Authorizationstring required
Your Perk API key
Request body
Example request
{
"name": "Finance",
"approver_id": 123,
"delegate_id": 456,
"delegate_expiry": "2025-12-31",
"erp_code": "CC-4210"
}Response
Returns '200 OK' and the updated cost center resource.
Example response
{
"id": "1",
"name": "Finance",
"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",
"count_users": 1,
"erp_code": "CC-4210"
}