Get Me

GET /v1/accounts/me

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • email string Required
    • organization object | null
      Hide organization attributes Show organization attributes object | null
      • org_uuid string Required
      • name string Required
    • is_admin boolean Required
    • is_impersonating boolean Required
    • feature_flags object Required
      Hide feature_flags attribute Show feature_flags attribute object
      • enable_dashboard boolean Required
GET /v1/accounts/me
curl \
 --request GET 'https://api.aymara.ai/v1/accounts/me' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "email": "string",
  "organization": {
    "org_uuid": "string",
    "name": "string"
  },
  "is_admin": true,
  "is_impersonating": true,
  "feature_flags": {
    "enable_dashboard": true
  }
}