Skip to main content
GET
/
v1
/
whoami
Retrieve authenticated user's organization and workspace information
curl --request GET \
  --url https://api.meetsquad.ai/v1/whoami \
  --header 'Authorization: <api-key>'
{
  "data": {
    "organisation": {
      "id": "a5f3c6e1-9d20-4f7b-8e31-d09a2b63c184",
      "name": "Acme Corporation"
    },
    "workspace": {
      "id": "c0e195d9-b918-4a3a-bd8b-f730361d044f",
      "name": "Product Development"
    }
  }
}

Authorizations

Authorization
string
header
required

API key authentication for public API endpoints. This key is scoped by workspace so a unique key is required per workspace within an organisation.

Response

Successfully retrieved user information

User organization and workspace information

data
object
required