GET api/WorkflowCreator/GetProcessbyId?token={token}&workplaceId={workplaceId}&mandatorId={mandatorId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
|
| workplaceId | integer |
Required |
|
| mandatorId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of MDLProcess| Name | Description | Type | Additional information |
|---|---|---|---|
| ProcessNr | integer |
None. |
|
| Barcode | string |
None. |
|
| Name | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ProcessNr": 1,
"Barcode": "sample string 2",
"Name": "sample string 3"
},
{
"ProcessNr": 1,
"Barcode": "sample string 2",
"Name": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfMDLProcess xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Asanus.BarCon.Middleware.Shared.WorkflowCreator">
<MDLProcess>
<Barcode>sample string 2</Barcode>
<Name>sample string 3</Name>
<ProcessNr>1</ProcessNr>
</MDLProcess>
<MDLProcess>
<Barcode>sample string 2</Barcode>
<Name>sample string 3</Name>
<ProcessNr>1</ProcessNr>
</MDLProcess>
</ArrayOfMDLProcess>