/api/v2/bpm/node_data/node/{node_id}
/api/v2/bpm/node_data/node/{node_id}
Path Parameters
- node_id integer required
ID ноды, которая может содержать дополнительные данные
Example: 655109
Query Parameters
- string
- offset integer
Параметр содержащий порядковый номер элемента, после которого будут показаны остальные результаты
Example: 0 - limit string
Параметр содержащий максимальное кол-во элементов в ответе
Example: 4
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
- example-0
- example-1
Schema
- object
{}
200(404)
{
"status": 1,
"message": "",
"response": {
"node_data_objects": [],
"offset": 0,
"total": 0,
"all": 0
},
"preparingsTime": 0.186
}
200
{
"status": 1,
"message": "",
"response": {
"node_data_objects": [
{
"id": 22,
"nodeId": 655109,
"nodeData": {
"here": 500,
"mayBe": "random string",
"anyJson": {
"age": 10,
"name": "slava"
}
}
}
],
"offset": 0,
"total": 1,
"all": 1
},
"preparingsTime": 0.065
}
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.005
}
Loading...