Who am I

This endpoint returns information about the currently logged in user. It can be used to figure out the Company resource URI which is the base URI for almost all other resources.

Attributes

Name Type
first_name string
last_name string
username string
email string
company reference
gender string
profile_uri reference
resource_uri reference
session_id string
preferred_language string
confirmationdate timestamp
seen_welcome bool

Object

/whoami/

Methods

  • GET

Example response

{
  "company": "https://interview-suite.com/api/v3/companies/4/",
  "confirmationdate": "2016-02-12T12:59:29Z",
  "email": "luke.skywalker@tatooine.planet",
  "first_name": "Luke",
  "gender": "mr",
  "last_name": "Skywalker",
  "preferred_language": "en",
  "profile_uri": "https://interview-suite.com/api/v3/companies/4/customers/18/",
  "resource_uri": "https://interview-suite.com/api/v3/customusers/2/",
  "seen_welcome": true,
  "session_id": "72c7902889223e5f51b0379a79bc0a79",
  "username": "luke123"
}