v1

latestOpenAPI 3.1.02026-08-0662251219.8 KB
Companies

Updates company managers config

This endpoint stores company managers config (account managers and customer success managers) for the company at different entity levels.

put/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

Request body

Example request

{
  "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
    }
  ]
}

Response

OK