POST api/Setting/UpdateDimensions
Request Information
URI Parameters
None.
Body Parameters
ServiceProviderConfigurationModelName | Description | Type | Additional information |
---|---|---|---|
ServiceProviderId | integer |
None. |
|
BarcodeReceiptEnabled | boolean |
None. |
|
AutoSplitEnabled | boolean |
None. |
|
Length | decimal number |
None. |
|
Width | decimal number |
None. |
|
Height | decimal number |
None. |
|
Weight | decimal number |
None. |
|
Volume | decimal number |
None. |
|
CarbonFootPrintEnabled | boolean |
None. |
|
StartOfDayEnabled | boolean |
None. |
|
PausedJobEnabled | boolean |
None. |
|
EODEnabled | boolean |
None. |
|
ComplaintEnabled | boolean |
None. |
|
ComplaintExpiry | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "ServiceProviderId": 1, "BarcodeReceiptEnabled": true, "AutoSplitEnabled": true, "Length": 1.0, "Width": 1.0, "Height": 1.0, "Weight": 1.0, "Volume": 1.0, "CarbonFootPrintEnabled": true, "StartOfDayEnabled": true, "PausedJobEnabled": true, "EODEnabled": true, "ComplaintEnabled": true, "ComplaintExpiry": "2025-06-28T13:00:21.7483641Z" }
text/html
Sample:
{"ServiceProviderId":1,"BarcodeReceiptEnabled":true,"AutoSplitEnabled":true,"Length":1.0,"Width":1.0,"Height":1.0,"Weight":1.0,"Volume":1.0,"CarbonFootPrintEnabled":true,"StartOfDayEnabled":true,"PausedJobEnabled":true,"EODEnabled":true,"ComplaintEnabled":true,"ComplaintExpiry":"2025-06-28T13:00:21.7483641Z"}
application/xml, text/xml
Sample:
<ServiceProviderConfigurationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAO.Models.Configurations"> <AutoSplitEnabled>true</AutoSplitEnabled> <BarcodeReceiptEnabled>true</BarcodeReceiptEnabled> <CarbonFootPrintEnabled>true</CarbonFootPrintEnabled> <ComplaintEnabled>true</ComplaintEnabled> <ComplaintExpiry>2025-06-28T13:00:21.7483641Z</ComplaintExpiry> <EODEnabled>true</EODEnabled> <Height>1</Height> <Length>1</Length> <PausedJobEnabled>true</PausedJobEnabled> <ServiceProviderId>1</ServiceProviderId> <StartOfDayEnabled>true</StartOfDayEnabled> <Volume>1</Volume> <Weight>1</Weight> <Width>1</Width> </ServiceProviderConfigurationModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpStatusCodeResponse Formats
application/json, text/json, text/html
Sample:
100
application/xml, text/xml
Sample:
<HttpStatusCode xmlns="http://schemas.datacontract.org/2004/07/System.Net">Continue</HttpStatusCode>