Read licenses

GET /me/licenses

Read all licenses for a profile. Receive in return the identifiers for an organization and the connected person within that company. This information can be used as a login hint to get an access token for operational work on behalf of the connected person.

Headers

Query parameters

Responses

GET /me/licenses
curl \
 -X GET https://rest.api.24sevenoffice.com/v1/me/licenses \
 -H "Authorization: string"
Response examples (200)
# Headers
Access-Control-Allow-Origin: string
Access-Control-Allow-Credentials: string
X-Trace-Id: string

# Payload
[
  {
    "id": "123e4567-e89b-12d3-a456-426614174003",
    "name": "ABC Corporation",
    "organizationId": 12345,
    "identityId": "123e4567-e89b-12d3-a456-426614174001",
    "personId": 67890
  },
  {
    "id": "123e4567-e89b-12d3-a456-426614174004",
    "name": "XYZ Inc.",
    "organizationId": 78901,
    "identityId": "123e4567-e89b-12d3-a456-426614174002",
    "personId": 54321
  }
]