GET
/
users
/
current
curl --request GET \
  --url https://api.meuassistente.rdstationmentoria.com.br/rest/users/current \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "email": "jsmith@example.com",
  "picture": null,
  "createdAt": "2025-07-04T18:19:22.564Z",
  "updatedAt": "2025-07-04T18:19:22.564Z"
}

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.

GET
/
users
/
current
curl --request GET \
  --url https://api.meuassistente.rdstationmentoria.com.br/rest/users/current \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "email": "jsmith@example.com",
  "picture": null,
  "createdAt": "2025-07-04T18:19:22.564Z",
  "updatedAt": "2025-07-04T18:19:22.564Z"
}

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.