Documentation
Organization Structure API
- Axis-sections
- Departments
- Legal-Units
- Establishments
Core HR API
- Employees Directory
- Guides
Expenses API
- Expense-temp-items
- Expense-claims
- Expense-claim-items
- Exports
- Guides
Invoices API
- Cost-Centers
- Purchases
- Approval Workflow
- Booked Documents
- Misc.
- Guides
Absences API
- Leaves
- Leave-requests
- Sick-leaves
- Imports
- Guides
Office API
- User-locations
- Work-locations
Project API
- Clients
- Projects
- Project services
- Organizations
- Financials
Time Settings API
- UserDates
- Workcycle-exceptions
- Working-time-arrangement
Timesheet API
- Time-entries
- Timesheets
- Reports
- Guides
Mealvouchers API
- Statutory
- Computation
Compensation API
- Fixed-natures
- Fixed-items
- Variable-natures
- Variable-items
Training API
- Training-demands
- Realized-trainings
Cost-Centers
Get Cost-Center
Retrieve a cost-center by its ID.
GET
/
cleemy-procurement
/
api
/
costcenters
/
{id}
Copy
Ask AI
curl --request GET \
--url https://{host}/cleemy-procurement/api/costcenters/{id} \
--header 'Authorization: <authorization>'
Copy
Ask AI
{
"id": 123,
"name": "<string>",
"code": "<string>",
"owner": {
"id": 123,
"href": "<string>",
"name": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"pictureHref": "<string>"
},
"state": "Disabled",
"establishments": [
{
"id": 123,
"name": "<string>",
"href": "<string>"
}
]
}
Headers
API key. Value must be formatted like so: lucca application={api_key}
.
Path Parameters
ID of the cost-center.
Response
200 - application/json
Successful read of cost-center
Cost-center.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://{host}/cleemy-procurement/api/costcenters/{id} \
--header 'Authorization: <authorization>'
Copy
Ask AI
{
"id": 123,
"name": "<string>",
"code": "<string>",
"owner": {
"id": 123,
"href": "<string>",
"name": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"pictureHref": "<string>"
},
"state": "Disabled",
"establishments": [
{
"id": 123,
"name": "<string>",
"href": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.