/api/v2/bpm/node_data/node/{node_id}
/api/v2/bpm/node_data/node/{node_id}
Path Parameters
- node_id string required
- application/json
Request Body
- nodeData object
???
Responses
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"status": 1,
"message": "Node_data is successfully created",
"response": {
"id": 22,
"nodeId": 655109,
"nodeData": {
"here": 500,
"mayBe": "random string",
"anyJson": {
"name": "slava",
"age": 10
}
}
},
"preparingsTime": 0.086
}
Bad Request
- application/json
- Schema
- Example (from schema)
- example-0
- example-1
Schema
- object
{}
400(404)
{
"status": 0,
"message": "Not Found",
"response": {},
"preparingsTime": 0.058
}
400
{
"nodeData": [
"This field may not be null."
],
"preparingsTime": 0.057
}
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...