POST api/ERP/Jobs/SaveJobGridState
Request Information
URI Parameters
None.
Body Parameters
Collection of TransferGridSettingsName | Description | Type | Additional information |
---|---|---|---|
width | string |
None. |
|
key | string |
None. |
|
headerText | string |
None. |
|
dataType | string |
None. |
|
hidden | boolean |
None. |
|
sorting | boolean |
None. |
|
sortorder | integer |
None. |
|
sorttype | string |
None. |
Request Formats
application/json, text/json
Sample:
[ { "width": "sample string 1", "key": "sample string 2", "headerText": "sample string 3", "dataType": "sample string 4", "hidden": true, "sorting": true, "sortorder": 7, "sorttype": "sample string 8" }, { "width": "sample string 1", "key": "sample string 2", "headerText": "sample string 3", "dataType": "sample string 4", "hidden": true, "sorting": true, "sortorder": 7, "sorttype": "sample string 8" } ]
application/xml, text/xml
Sample:
<ArrayOfTransferGridSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessObjects.ERP"> <TransferGridSettings> <dataType>sample string 4</dataType> <headerText>sample string 3</headerText> <hidden>true</hidden> <key>sample string 2</key> <sorting>true</sorting> <sortorder>7</sortorder> <sorttype>sample string 8</sorttype> <width>sample string 1</width> </TransferGridSettings> <TransferGridSettings> <dataType>sample string 4</dataType> <headerText>sample string 3</headerText> <hidden>true</hidden> <key>sample string 2</key> <sorting>true</sorting> <sortorder>7</sortorder> <sorttype>sample string 8</sorttype> <width>sample string 1</width> </TransferGridSettings> </ArrayOfTransferGridSettings>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>