Skip to main content
POST
Use this endpoint to retrieve the company account and organization-level configuration for the authenticated API key. This includes the team configuration used to map member team IDs to team names.

REQUEST

This endpoint does not require request parameters.

RESPONSE

status
integer
required
Status code. 0 indicates success.
company
object
required
Company account object with profile, location, settings, custom field definitions, and team configuration.
company.teams_config
array
Array of team configuration objects for the organization. Use this list to map team IDs returned by member, place, and job APIs to team names.
company.teams_config[].id
integer
Team ID. This matches the numeric IDs returned in member teams arrays.
company.teams_config[].name
string
Team display name.
company.teams_config[].working_hours
object
Team working hours configuration, when configured.
company.teams_config[].route
object
Optional team route start configuration, when configured.

Team ID Lookup

The Get Members endpoint returns each member’s team assignments as numeric IDs:
To show team names, match each value in teams against company.teams_config[].id from this endpoint.
In this example, member abc123 belongs to “North Team” and “South Team”.
  • Get Members - Retrieve member information and member team IDs
  • Edit Member - Update member profile and team assignments
  • Get Places - Retrieve places and place team IDs