POST api/MasterConfig/DeliveryFare/SaveDeliveryZoneRefPointDtls

Request Information

URI Parameters

None.

Body Parameters

RefrencePoint
NameDescriptionTypeAdditional information
RefrencePointID

integer

Required

DeliveryZoneID

integer

Required

AreaPointID

integer

None.

Lat

string

Required

Lng

string

Required

RefrencePointName

string

Required

Request Formats

application/json, text/json

Sample:
{
  "RefrencePointID": 1,
  "DeliveryZoneID": 2,
  "AreaPointID": 3,
  "Lat": "sample string 4",
  "Lng": "sample string 5",
  "RefrencePointName": "sample string 6"
}

application/xml, text/xml

Sample:
<RefrencePoint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Master.Operations.CustomModels">
  <AreaPointID>3</AreaPointID>
  <DeliveryZoneID>2</DeliveryZoneID>
  <Lat>sample string 4</Lat>
  <Lng>sample string 5</Lng>
  <RefrencePointID>1</RefrencePointID>
  <RefrencePointName>sample string 6</RefrencePointName>
</RefrencePoint>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>