POST api/Dispatch/DispatchBucketBillMapp

Request Information

URI Parameters

None.

Body Parameters

DispatchBucketBillMap
NameDescriptionTypeAdditional information
AddedBy

integer

None.

DispatchBucketId

integer

None.

dbList

Collection of DisptchBucketBillMappList

None.

Request Formats

application/json, text/json

Sample:
{
  "AddedBy": 1,
  "DispatchBucketId": 2,
  "dbList": [
    {
      "OMSId": 1
    },
    {
      "OMSId": 1
    }
  ]
}

application/xml, text/xml

Sample:
<DispatchEntity.DispatchBucketBillMap xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IPMSAPIV1.Entity">
  <AddedBy>1</AddedBy>
  <DispatchBucketId>2</DispatchBucketId>
  <dbList>
    <DispatchEntity.DisptchBucketBillMappList>
      <OMSId>1</OMSId>
    </DispatchEntity.DisptchBucketBillMappList>
    <DispatchEntity.DisptchBucketBillMappList>
      <OMSId>1</OMSId>
    </DispatchEntity.DisptchBucketBillMappList>
  </dbList>
</DispatchEntity.DispatchBucketBillMap>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIResponse
NameDescriptionTypeAdditional information
responseCode

integer

None.

responseMessage

string

None.

Id

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "responseCode": 1,
  "responseMessage": "sample string 2",
  "Id": 3
}

application/xml, text/xml

Sample:
<DispatchEntity.APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IPMSAPIV1.Entity">
  <Id>3</Id>
  <responseCode>1</responseCode>
  <responseMessage>sample string 2</responseMessage>
</DispatchEntity.APIResponse>