POST api/User/UptDelLoc

Request Information

URI Parameters

None.

Body Parameters

CreateDeliveryLocation
NameDescriptionTypeAdditional information
crux

globally unique identifier

Required

Lat

decimal number

Required

Logt

decimal number

Required

FullName

string

Required

PhoneNumber

string

Required

AlternateNumber

string

Required

HouseNo

string

Required

RoadName

string

Required

Pincode

integer

Required

NickName

string

Required

landmark

string

Required

IsGoogleMap

boolean

Required

Request Formats

application/json, text/json

Sample:
{
  "crux": "c08757a5-b5df-4e15-b01d-9a441fa054cc",
  "Lat": 2.0,
  "Logt": 3.0,
  "FullName": "sample string 4",
  "PhoneNumber": "sample string 5",
  "AlternateNumber": "sample string 6",
  "HouseNo": "sample string 7",
  "RoadName": "sample string 8",
  "Pincode": 9,
  "NickName": "sample string 10",
  "landmark": "sample string 11",
  "IsGoogleMap": true
}

application/xml, text/xml

Sample:
<CreateDeliveryLocation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TheanAPI.DTO">
  <AlternateNumber>sample string 6</AlternateNumber>
  <FullName>sample string 4</FullName>
  <HouseNo>sample string 7</HouseNo>
  <IsGoogleMap>true</IsGoogleMap>
  <Lat>2</Lat>
  <Logt>3</Logt>
  <NickName>sample string 10</NickName>
  <PhoneNumber>sample string 5</PhoneNumber>
  <Pincode>9</Pincode>
  <RoadName>sample string 8</RoadName>
  <crux>c08757a5-b5df-4e15-b01d-9a441fa054cc</crux>
  <landmark>sample string 11</landmark>
</CreateDeliveryLocation>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseDtoOfObject
NameDescriptionTypeAdditional information
Status_cd

boolean

None.

Data

Object

None.

status_Desc

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status_cd": true,
  "Data": {},
  "status_Desc": "sample string 3"
}

application/xml, text/xml

Sample:
<ResponseDtoOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TheanAPI.DTO">
  <Data />
  <Status_cd>true</Status_cd>
  <status_Desc>sample string 3</status_Desc>
</ResponseDtoOfanyType>