GET api/DeliveryCharges

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of DeliveryCharge
NameDescriptionTypeAdditional information
DeliveryChargeId

integer

None.

PinCode

string

None.

Charge

decimal number

None.

PlaceID

integer

None.

StatusTypeId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "DeliveryChargeId": 1,
    "PinCode": "sample string 2",
    "Charge": 1.1,
    "PlaceID": 1,
    "StatusTypeId": 1
  },
  {
    "DeliveryChargeId": 1,
    "PinCode": "sample string 2",
    "Charge": 1.1,
    "PlaceID": 1,
    "StatusTypeId": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfDeliveryCharge xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GNGroup.Models">
  <DeliveryCharge>
    <Charge>1.1</Charge>
    <DeliveryChargeId>1</DeliveryChargeId>
    <PinCode>sample string 2</PinCode>
    <PlaceID>1</PlaceID>
    <StatusTypeId>1</StatusTypeId>
  </DeliveryCharge>
  <DeliveryCharge>
    <Charge>1.1</Charge>
    <DeliveryChargeId>1</DeliveryChargeId>
    <PinCode>sample string 2</PinCode>
    <PlaceID>1</PlaceID>
    <StatusTypeId>1</StatusTypeId>
  </DeliveryCharge>
</ArrayOfDeliveryCharge>