GET
/
api
/
profile
Perfil do usuario autenticado
curl --request GET \
  --url https://suite.sisqualis.com.br/api/profile/ \
  --header 'Authorization: <api-key>'
{
  "id": 123,
  "username": "<string>",
  "email": "jsmith@example.com",
  "full_name": "<string>",
  "department": "<string>",
  "job_title": "<string>",
  "is_employee": true,
  "status": "<string>",
  "role_id": 123,
  "role_name": "<string>",
  "permissions": [
    "<string>"
  ],
  "last_access_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Use: Token <seu_token>

Response

Perfil do usuario

id
integer
username
string
email
string<email>
full_name
string
department
string
job_title
string
is_employee
boolean
status
string
role_id
integer | null
role_name
string
permissions
string[]
last_access_at
string<date-time> | null