/api/v2/bpm/devices/{device_id}/users
Метод возвращает данные о пользователе, по ID девайса
В данное время функционал не используется
Path Parameters
- device_id string required
Является уникальным идентификатором, который присваивается каждому устройству, будь то компьютер, смартфон, планшет или другое электронное устройство
Example: 4fb7ced0-8865-44c9-bdbf-7f98d939bbb3
Responses
- 200
- 401
- 404
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"status": 1,
"message": "",
"response": [
{
"id": 118,
"email": "Amari.Wunsch25@yahoo.com",
"login": "7941647225",
"phone": "7941647225",
"doc_number": null,
"created_at": "2023-05-29T14:34:02.847182Z",
"devices": [
{
"id": 102,
"device_id": "4fb7ced0-8865-44c9-bdbf-7f98d939bbb3",
"device_name": null,
"created_at": "2023-05-29T14:34:03.240562Z",
"session": null,
"id_user": 118
}
]
}
],
"preparingsTime": 0.171
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"status": 0,
"message": "Authentication credentials were not provided.",
"response": {
"detail": "Authentication credentials were not provided."
},
"preparingsTime": 0.05
}
Not Found
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"status": 0,
"message": "User device not found",
"response": {}
}
Loading...