get/auth/me

Current session info

Headers

ParameterInTypeDescription
authorization
headerstring

Responses

200Successful Response
Example · 200
{
  "user_id": "<User Id>",
  "email": "<Email>",
  "role": "<Role>",
  "org_id": "<Org Id>",
  "org_name": "<Org Name>",
  "org_email": "<Org Email>",
  "org_status": "<Org Status>",
  "tier": "<Tier>",
  "tier_display_name": "<Tier Display Name>"
}
422Validation Error
Example · 422
{
  "detail": [
    {
      "loc": [
        null
      ],
      "msg": "<Message>",
      "type": "<Error Type>"
    }
  ]
}

Code samples

Generated from the live OpenAPI spec. Replace $SAVITAR_API_KEY with a key from your dashboard.

curl -X GET "https://redactra-api-direct-yjxsqk46ja-el.a.run.app/auth/me" \
  -H "Authorization: Bearer $SAVITAR_API_KEY"