drio
Technical OverviewAPI Reference
You're viewing archived v1 docs.View latest

Auth

Authenticated identity and API access.

GET
/api/v2/me

Authorization

oauth openid, profile, email
AuthorizationBearer <token>

In: header

Scope: openid, profile, email

Response Body

application/json

application/json

curl -X GET "https://mcp.getdrio.com/api/v2/me"
{
  "user": {
    "workos_user_id": "string",
    "email": "string",
    "image": "string",
    "name": "string",
    "scopes": [
      "string"
    ]
  }
}
{
  "error": {
    "code": "string",
    "message": "string",
    "details": null,
    "request_id": "266ea41d-adf5-480b-af50-15b940c2b846"
  }
}