Users API
Use the Users API to retrieve the authenticated user's profile details. Access is guarded by standard Bearer token authentication in the HTTP header.
Fetch User Profile
Invoke the profile endpoint by passing the JWT access token received during the token exchange step.
GET https://accounts.elixpo.com/api/auth/me Authorization: Bearer ACCESS_TOKEN
Response:
{
"id": "u_9b7bf7c2-866e-ee9d-3e48-ee9d3e488297",
"email": "developer@elixpo.com",
"displayName": "swift-falcon",
"provider": "email",
"emailVerified": true
}Profile Fields
| Field | Type | Description |
|---|---|---|
id | String | The stable, unique UUID representing the user across all Elixpo products. |
email | String | The user's registered email address. |
displayName | String | The user's username/nickname (e.g. swift-falcon). |
provider | String | Authentication provider (e.g. email, google, github). |
emailVerified | Boolean | Whether the user's email has been verified via OTP code. |
