PUT api/DeliveryCharges/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

DeliveryCharge
NameDescriptionTypeAdditional information
DeliveryChargeId

integer

None.

PinCode

string

None.

Charge

decimal number

None.

PlaceID

integer

None.

StatusTypeId

integer

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.