Skip to main content
GET
/
whoami
Get current user
curl --request GET \
  --url https://api.tickable.io/whoami \
  --header 'Authorization: Bearer <token>'
{
  "uid": "a3bb189e-8bf9-3888-9912-ace4e6543002",
  "email": "email@example.com",
  "organization": "Organization"
}

Authorizations

Authorization
string
header
required

Pass as Authorization: Bearer {token}. Accepts either an OAuth2 JWT access token or an API key (tk_live_...) created from the Tickable dashboard.

Response

200 - application/json

Authenticated user info

uid
string<uuid>
required
Example:

"a3bb189e-8bf9-3888-9912-ace4e6543002"

email
string
required
Example:

"email@example.com"

organization
string
required
Example:

"Organization"