Get licenses
GET
/me/licenses
Get all licenses for a profile. It will return identificator to an organization and the connected person within that company. This information can be used as a login hint to get an access token to do operational work for that company, on behalf of the connected person.
Query parameters
-
organizationId integer(int64)
-
personId integer(int32)
GET /me/licenses
curl \
-X GET https://gateway.api.tfso.io/v1/me/licenses \
-H "Authorization: string"
Response example (200)
# Headers
Access-Control-Allow-Origin: string
Access-Control-Allow-Credentials: string
X-Trace-Id: string
# Payload
[
{
"id": "string",
"name": "string",
"organizationId": 42,
"identityId": "string",
"personId": 42
}
]