v1

latestOpenAPI 3.1.02026-08-0662251219.8 KB
Companies

Get company managers config

This endpoint fetches the company managers config for the company.

get/v2/companies/{companyId}/managers-config

Query parameters

companyRole'ORG' | 'TMC' | 'PARTNER_TMC' | 'HR_FEED_CONNECTOR' | 'TRIPS_DATA_CONNECTOR' | 'GLOBAL' required

Role of the company.

Example:ORG

Response

OK

Example response

{
  "accountManagers": [
    {
      "fullName": "John Doe",
      "email": "john.doe@company.com",
      "profilePictureUrl": "https://example.com/profiles/john-doe.jpg",
      "isActive": true
    }
  ],
  "customerSuccessManagers": [
    {
      "fullName": "John Doe",
      "email": "john.doe@company.com",
      "profilePictureUrl": "https://example.com/profiles/john-doe.jpg",
      "isActive": true
    }
  ]
}