/api/v2/bpm/roles
Метод возвращает список всех возможных ролей для пользователей BPMS
Query Parameters
- offset integer
Параметр содержащий порядковый номер элемента, после которого будут показаны остальные результаты
Example: 1 - limit integer
Параметр содержащий максимальное кол-во элементов в ответе
Example: 100
Header Parameters
- Authorization stringExample: {{token}}
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"status": 1,
"message": "",
"response": {
"roles": [
{
"id": 4,
"name": "Monitoring",
"description": "Access to /health etc.",
"permissions": [
341235
]
},
{
"id": 3,
"name": "User",
"description": null,
"permissions": [
6,
341242,
341243,
341244,
341247,
341248,
341236
]
},
{
"id": 1,
"name": "Admin",
"description": "Admin",
"permissions": [
341236
]
}
],
"offset": 1,
"total": 4,
"all": 3
},
"preparingsTime": 0.021
}
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.003
}
Loading...