/api/v2/bpm/actions/{action_id}
Метод возвращает информацию о действии по ID
Path Parameters
- action_id integer required
ID действия, которое может быть совершено на процессе
Example: 1
Responses
- 200
- 401
- 404
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"status": 1,
"message": "",
"response": {
"id": 1,
"actionName": "Переход на следующую ноду / экран",
"actionAlias": "action.next",
"actionType": "next",
"parameters": []
},
"preparingsTime": 0.041
}
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/actions/111111 not found",
"response": {},
"preparingsTime": 0.252
}
Loading...