POST api/v2/works/{workId}/WorkFlowNextStepToId/{workFlowStepId}
Request
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| workId | integer |
Required |
|
| workFlowStepId | integer |
Required |
Body Parameters
WorkNextStep| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer | ||
| Identification | string | ||
| PriorityId | integer | ||
| WorkConclusionId | integer | ||
| NextWorkFlow | WorkFlowNextStep | ||
| Infos | DeltaOfWorkFlowInfoInsertAndWorkFlowInfoUpdate |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Identification": "sample string 2",
"PriorityId": 1,
"WorkConclusionId": 1,
"NextWorkFlow": {
"Execution": "2026-02-02T21:08:47.2664311Z",
"RequiredPriority": true,
"RequiredConclusion": true
},
"Infos": {
"Inserted": [
{
"InfoId": 1,
"ValueEquipmentId": 1,
"ValueAccountId": 1,
"ValueConsumableMovementId": 1,
"DisplayValue": "sample string 2",
"ValueFileId": 1,
"Attribute": "sample string 3",
"InfoGroupId": 1,
"RequireOnEnterStep": true
},
{
"InfoId": 1,
"ValueEquipmentId": 1,
"ValueAccountId": 1,
"ValueConsumableMovementId": 1,
"DisplayValue": "sample string 2",
"ValueFileId": 1,
"Attribute": "sample string 3",
"InfoGroupId": 1,
"RequireOnEnterStep": true
}
],
"Modified": [
{
"Id": 1,
"ValueEquipmentId": 1,
"ValueAccountId": 1,
"ValueConsumableMovementId": 1,
"DisplayValue": "sample string 2",
"ValueFileId": 1,
"Attribute": "sample string 3",
"InfoGroupId": 1,
"RequireOnLeaveStep": true
},
{
"Id": 1,
"ValueEquipmentId": 1,
"ValueAccountId": 1,
"ValueConsumableMovementId": 1,
"DisplayValue": "sample string 2",
"ValueFileId": 1,
"Attribute": "sample string 3",
"InfoGroupId": 1,
"RequireOnLeaveStep": true
}
],
"Deleted": [
1,
2
]
}
}
text/html
Sample:
{"Id":1,"Identification":"sample string 2","PriorityId":1,"WorkConclusionId":1,"NextWorkFlow":{"Execution":"2026-02-02T21:08:47.2664311Z","RequiredPriority":true,"RequiredConclusion":true},"Infos":{"Inserted":[{"InfoId":1,"ValueEquipmentId":1,"ValueAccountId":1,"ValueConsumableMovementId":1,"DisplayValue":"sample string 2","ValueFileId":1,"Attribute":"sample string 3","InfoGroupId":1,"RequireOnEnterStep":true},{"InfoId":1,"ValueEquipmentId":1,"ValueAccountId":1,"ValueConsumableMovementId":1,"DisplayValue":"sample string 2","ValueFileId":1,"Attribute":"sample string 3","InfoGroupId":1,"RequireOnEnterStep":true}],"Modified":[{"Id":1,"ValueEquipmentId":1,"ValueAccountId":1,"ValueConsumableMovementId":1,"DisplayValue":"sample string 2","ValueFileId":1,"Attribute":"sample string 3","InfoGroupId":1,"RequireOnLeaveStep":true},{"Id":1,"ValueEquipmentId":1,"ValueAccountId":1,"ValueConsumableMovementId":1,"DisplayValue":"sample string 2","ValueFileId":1,"Attribute":"sample string 3","InfoGroupId":1,"RequireOnLeaveStep":true}],"Deleted":[1,2]}}
Response
DefaultResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean | ||
| Messages | Collection of string | ||
| DialogType | integer | ||
| Data | Object |
Response Format
application/json, text/json
Sample:
{
"Success": true,
"Messages": [
"sample string 1",
"sample string 2"
],
"DialogType": 1,
"Data": {}
}
text/html
Sample:
{"Success":true,"Messages":["sample string 1","sample string 2"],"DialogType":1,"Data":{}}