Cost centers
Organize receipts and expenses by cost center for better financial visibility.
Overview
Cost centers allow you to categorize expenses and receipts for better tracking and reporting.
Create a cost center
To manually create a new cost center, call POST /cost_centers
:
The successful 201
response contains the information of the created cost center:
The field is_external = false
indicates that the cost center was manually created in Monite and can be updated or deleted.
List all cost centers
To get information about all cost centers associated with an entity, call GET /cost_centers
:
Retrieve a cost center
To get information about a specific cost center, call GET /cost_centers/{cost_center_id}
.
Edit a cost center
To edit an existing cost center, call PATCH /cost_centers/{cost_center_id}
:
Delete a cost center
To delete a specific cost center, call DELETE /cost_centers/{cost_center_id}
.