GET
/
users
/
me
Retrieve logged-in user
curl --request GET \
  --url https://api.fluxend.app/users/me \
  --header 'Authorization: <authorization>'
{
  "content": {
    "bio": "<string>",
    "createdAt": "<string>",
    "email": "<string>",
    "organizationUuid": "<string>",
    "roleId": 123,
    "status": "<string>",
    "updatedAt": "<string>",
    "username": "<string>",
    "uuid": "<string>"
  },
  "errors": [
    "<string>"
  ],
  "metadata": "<any>",
  "success": true
}

Headers

Authorization
string
required

Bearer Token

Response

200
application/json

User details

The response is of type object.