POST api/Warehouses/UpdateAWBNumberStatus

Request Information

URI Parameters

None.

Body Parameters

AWBUpdateModel
NameDescriptionTypeAdditional information
AWBId

integer

None.

MasterBillNumber

string

None.

IsAvailable

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "AWBId": 1,
  "MasterBillNumber": "sample string 2",
  "IsAvailable": true
}

application/xml, text/xml

Sample:
<AWBUpdateModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cyzerg.Model.WMS.InputOutputModels">
  <AWBId>1</AWBId>
  <IsAvailable>true</IsAvailable>
  <MasterBillNumber>sample string 2</MasterBillNumber>
</AWBUpdateModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

text/html

Sample:
{"AWBId":1,"MasterBillNumber":"sample string 2","IsAvailable":true}

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml, text/html

Sample:

Sample not available.