Cost CentersGet Cost Center by ID

Get Cost Center by ID

Returns the data of a specific cost center belonging to the authenticated company, identified by its UUID. Use this endpoint to confirm a cost center still exists before displaying it in a UI, or to validate a costCenterId received from another source.

Rules:

  • The id is the id field returned by GET /cost-centers/v1/cost-centers.
  • Returns 404 if the cost center is not found or does not belong to the authenticated company — company isolation is enforced automatically.
curl -X GET "https://api-sandbox.contasimples.com/cost-centers/v1/cost-centers/fdafbfa7-5eeb-4d96-84aa-82b7c2e1b0ff" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "id": "fdafbfa7-5eeb-4d96-84aa-82b7c2e1b0ff",
  "companyId": "7c61b3f6-7353-46aa-80ef-3e27d95150ab",
  "name": "Marketing"
}
GET
/cost-centers/v1/cost-centers/{id}
GET
Base URLstring

Target server for requests. Edit to use your own host.

Bearer Token
Bearer Tokenstring
Required

Bearer token from OAuth 2.0 client credentials. Format: Bearer {token}

Bearer token from OAuth 2.0 client credentials. Format: Bearer {token}
path
idstring
Required

Unique identifier (UUID) of the cost center — use the id field returned by GET /cost-centers/v1/cost-centers.

Format: uuid
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token. Bearer token from OAuth 2.0 client credentials. Format: Bearer {token}

Path Parameters

idstring
Required

Unique identifier (UUID) of the cost center — use the id field returned by GET /cost-centers/v1/cost-centers.

Example:
fdafbfa7-5eeb-4d96-84aa-82b7c2e1b0ff

Responses

idstring
Required

Unique identifier of the cost center.

companyIdstring
Required

Identifier of the company that owns the cost center.

namestring
Required

Name of the cost center.