Skala
Users

Get user details

Retrieves the specific details of a single user using its unique identifier.

GET
/api/users/{id}

Retrieves the specific details of a single user using its unique identifier.

AuthorizationBearer <token>

In: header

Path Parameters

id*string

User identifier

Response Body

application/json

curl -X GET "https://api.skalasuite.com/api/users/string"
{
  "id": 0,
  "email": "string",
  "roles": [
    "string"
  ],
  "firstName": "string",
  "lastName": "string",
  "permissions": [
    {}
  ],
  "language": "tr",
  "deviceId": "string",
  "operations": [
    {
      "company": {
        "id": 0,
        "name": "string"
      }
    }
  ],
  "isAdmin": true,
  "isActive": true,
  "type": "user",
  "company": {
    "id": 0,
    "name": "string"
  }
}
Empty