POST api/Workflows/GetErrorStatusForWorkflowOnRemoveCustomFieldAndCustomAttribute
Request Information
URI Parameters
None.
Body Parameters
CheckCustomFieldAttrbuteinWorkFlowInputModelName | Description | Type | Additional information |
---|---|---|---|
FieldID | integer |
None. |
|
AttributeId | integer |
None. |
|
Mode | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "FieldID": 1, "AttributeId": 1, "Mode": 1 }
application/xml, text/xml
Sample:
<CheckCustomFieldAttrbuteinWorkFlowInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cyzerg.Model.WFM.InputOutputModels"> <AttributeId>1</AttributeId> <FieldID>1</FieldID> <Mode>1</Mode> </CheckCustomFieldAttrbuteinWorkFlowInputModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"FieldID":1,"AttributeId":1,"Mode":1}
Response Information
Resource Description
Collection of FieldAttributesAndPropName | Description | Type | Additional information |
---|---|---|---|
AttributeId | integer |
None. |
|
Attribute | string |
None. |
|
IsUsed | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "AttributeId": 1, "Attribute": "sample string 2", "IsUsed": true }, { "AttributeId": 1, "Attribute": "sample string 2", "IsUsed": true } ]
application/xml, text/xml
Sample:
<ArrayOfFieldAttributesAndProp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cyzerg.Model.WMS.InputOutputModels"> <FieldAttributesAndProp> <Attribute>sample string 2</Attribute> <AttributeId>1</AttributeId> <IsUsed>true</IsUsed> </FieldAttributesAndProp> <FieldAttributesAndProp> <Attribute>sample string 2</Attribute> <AttributeId>1</AttributeId> <IsUsed>true</IsUsed> </FieldAttributesAndProp> </ArrayOfFieldAttributesAndProp>
text/html
Sample:
[{"AttributeId":1,"Attribute":"sample string 2","IsUsed":true},{"AttributeId":1,"Attribute":"sample string 2","IsUsed":true}]