/api/v2/bpm/events/{id}
Метод возвращает информацию о событии по ID
Path Parameters
- id integer required
ID события. О событии можно сказать, как о внешнем воздействии НА систему, чаще всего это какие-то действия пользователя с элементами графического интерейса.
Example: 8
Responses
- 200
- 401
- 404
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"status": 1,
"message": "",
"response": {
"id": 8,
"eventName": "Выделение текста",
"eventAlias": "text_selection",
"isDefault": false
},
"preparingsTime": 0.082
}
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
}
Not Found
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"status": 0,
"message": "Endpoint en/api/v2/bpm/events/100 not found",
"response": {},
"preparingsTime": 0.333
}
Loading...