Cost Centre
Get all cost centres
API documentation
User
Tenant
Feature
Entitlement
User & permissions
Settings
- Settings
- Media
- Webhook
- Notification
Payment
- Payment Method
- Transaction
- SEPA XML
- Open Banking
- Bank Account Transaction
Customer
- Customer
- Customer Address
- Customer Email
- Customer Settings
- Customer Otp
Billing
- Invoice
- Invoice Position Item
- Billing Run
Dunning
- Dunning Document
- Dunning Rule
Subscription
- Subscription
- Subscription Item
- Subscription Measurement
- Billing Group
Offers
- Offer
- Offer Recipient
- Offer Template
Catalogue
- Unit
- Measurement
- Product
- Product Family
- Price Plan
- Coupon
Checkout
- Checkout Link
- Cart
Accounting
Cost Centre
Get all cost centres
Get all cost centres
Required permissions:cost-centre:read
GET
/
accounting
/
cost-centres
curl -X GET \
/accounting/cost-centres \
--header "Authorization: Bearer <token>"
{
"data": [
{
"id": "ad8f1c9c-4f0a-4e1a-8b1a-9c4d9c4d9c4d",
"name": "Cost Centre",
"code": "CC",
"type": "KOST1",
"status": "<any>",
"createdAt": "2021-01-01T00:00:00+00:00",
"updatedAt": "2021-01-01T00:00:00+00:00"
}
],
"meta": {
"pagination": {
"totalItems": 123,
"itemsPerPage": 123,
"currentPage": 123,
"lastPage": 123,
"pageTotalItems": 123
}
}
}
Authorizations
Value for the Authorization header parameter.
Query Parameters
The collection page number
The number of items per page
Required range:
0 <= x <= 100
Response
200
application/json
CostCentre collection
The name of the cost centre, which is displayed in the UI
Maximum length:
255
Example:
"Cost Centre"
The type of the cost centre, which is used for exports
Available options:
KOST1
, KOST2
Example:
"KOST1"
The status of the cost centre
Possible values:
active
: The cost centre is active and can be used and referencedarchived
: The cost centre is archived and cannot be referenced anymore. It also disappears from the UI.
Example:
"ad8f1c9c-4f0a-4e1a-8b1a-9c4d9c4d9c4d"
The code of the cost centre, which is used for exports
Example:
"CC"
The date and time when the cost centre was created
Example:
"2021-01-01T00:00:00+00:00"
The date and time when the cost centre was last updated
Example:
"2021-01-01T00:00:00+00:00"
Was this page helpful?
curl -X GET \
/accounting/cost-centres \
--header "Authorization: Bearer <token>"
{
"data": [
{
"id": "ad8f1c9c-4f0a-4e1a-8b1a-9c4d9c4d9c4d",
"name": "Cost Centre",
"code": "CC",
"type": "KOST1",
"status": "<any>",
"createdAt": "2021-01-01T00:00:00+00:00",
"updatedAt": "2021-01-01T00:00:00+00:00"
}
],
"meta": {
"pagination": {
"totalItems": 123,
"itemsPerPage": 123,
"currentPage": 123,
"lastPage": 123,
"pageTotalItems": 123
}
}
}