GET
/
accounting
/
cost-centres
/
{id}
curl -X GET \
 /accounting/cost-centres/{id} \
 --header "Authorization: Bearer <token>"
{
  "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"
}

Authorizations

Authorization
string
header
required

Value for the Authorization header parameter.

Path Parameters

id
string
required

CostCentre identifier

Response

200
application/json
CostCentre resource
name
string
required

The name of the cost centre, which is displayed in the UI

Maximum length: 255
Example:

"Cost Centre"

type
enum<string>
required

The type of the cost centre, which is used for exports

Available options:
KOST1,
KOST2
Example:

"KOST1"

status
any
required

The status of the cost centre

Possible values:

  • active: The cost centre is active and can be used and referenced
  • archived: The cost centre is archived and cannot be referenced anymore. It also disappears from the UI.
id
string
Example:

"ad8f1c9c-4f0a-4e1a-8b1a-9c4d9c4d9c4d"

code
string

The code of the cost centre, which is used for exports

Example:

"CC"

createdAt
string

The date and time when the cost centre was created

Example:

"2021-01-01T00:00:00+00:00"

updatedAt
string

The date and time when the cost centre was last updated

Example:

"2021-01-01T00:00:00+00:00"