/api/v2/bpm/events
Метод возвращает список возможных событий
Query Parameters
- q string
Регистронезависимая подстрока, фильтр по "actionName"
Example: в - offset integer
Параметр содержащий порядковый номер элемента, после которого будут показаны остальные результаты
Example: 1 - limit integer
Параметр содержащий максимальное кол-во элементов в ответе
Example: 20
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"status": 1,
"message": "",
"response": {
"events": [
{
"id": 2,
"eventName": "Выход из ноды",
"eventAlias": "node_exit",
"isDefault": null
},
{
"id": 1,
"eventName": "Вход на ноду",
"eventAlias": "node_enter",
"isDefault": null
},
{
"id": 6,
"eventName": "Вход в приложение",
"eventAlias": "app_enter",
"isDefault": null
}
],
"offset": 1,
"total": 4,
"all": 3
},
"preparingsTime": 0.081
}
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.004
}
Loading...