Skip to Content
Retrieve information about your current access token.
get

Retrieve information about your current access token, including organization, environment, and permissions. Note that this can only be access with an access token, and all access tokens can access this route, regardless of what permissions they have assigned.

get
200
/system/v1/whoami
Response
(application/json)
{
  "data": {
    "permissions": [
      "video:read",
      "data:read"
    ],
    "organization_name": "Mux",
    "organization_id": "orgid123",
    "environment_type": "development",
    "environment_name": "Development",
    "environment_id": "envid123",
    "access_token_name": "Development access token"
  }
}