Get profile

GET /me

Retrieve information about the current profile. This endpointis only available for access tokens that has identityId claim.
24SevenOffice is a multi-tenant application, where a personal login gives access to more than one organization and its people.

Hence, there exist identity, organization and the organization’s people

Identity → *Organization → *Person

Identity
An identity is a personal user who logs in to 24sevenoffice. An identity will have one or more unique identifiers for the personal user, such as an email or a phone number
An identity may or may not have access to one or more organization through a person.

24SevenOffice has a global identity pool where an identity may have access to all organizations available in 24SevenOffice.

Headers

GET /me
curl \
 -X GET https://gateway.api.tfso.io/v1/me \
 -H "Authorization: string"
Response example (200)
# Headers
Access-Control-Allow-Origin: string
Access-Control-Allow-Credentials: string
X-Trace-Id: string

# Payload
{
  "id": "string",
  "firstName": "string",
  "lastName": "string",
  "timeZone": "string",
  "country": "string",
  "language": "string",
  "culture": "string"
}