APIAccount

Get account information

Returns account information for the authenticated user

Returns account information for the authenticated user

GET
/api/client/account

Authorization

bearerAuth
AuthorizationBearer <token>

Enter your API token in the format: Bearer {token}

In: header

Response Body

application/json

curl -X GET "https://example.com/api/client/account"
{
  "object": "user",
  "attributes": {
    "id": 1,
    "admin": false,
    "username": "john_doe",
    "email": "[email protected]",
    "language": "en"
  }
}
Empty