This endpoint is used to retrieve a user's core account details. The user's account details are returned in JSON format, including email_address
, tracking_id
and email_verified
. If the request lacks valid authentication credentials, a 401 Unauthorized response is returned.
OK. The user account was successfully retrieved.
Unauthorized. The user lacks authentication, preventing retrieval of account details due to either an invalid blaize_session
cookie header in the request or its absence.
Account not found. The request included a valid blaize_session
cookie header, but no account was located matching the provided authentication credentials.
{- "identifiers": {
- "email_address": "<any valid user's email>"
}, - "tracking_id": "5fac49a6-e423-4ac1-b0ad-d678979344222",
- "email_verified": true
}