GET
/
user
curl --request GET \
  --url https://atoms-api.smallest.ai/api/v1/user \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "data": {
    "_id": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "userEmail": "<string>",
    "authProvider": "<string>",
    "isEmailVerified": true,
    "organizationId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Successful response

The response is of type object.