POST InsertUpdateCustomerAddLocationData

Request Information

URI Parameters

None.

Body Parameters

ApiCallForCustomerAddLocation
NameDescriptionTypeAdditional information
Latitude

string

None.

Longitude

string

None.

createBy

string

None.

CustomerId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Latitude": "sample string 1",
  "Longitude": "sample string 2",
  "createBy": "sample string 3",
  "CustomerId": "sample string 4"
}

application/xml, text/xml

Sample:
<ApiCallForCustomerAddLocation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GIROGAAN.API.Models">
  <CustomerId>sample string 4</CustomerId>
  <Latitude>sample string 1</Latitude>
  <Longitude>sample string 2</Longitude>
  <createBy>sample string 3</createBy>
</ApiCallForCustomerAddLocation>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ServiceResponse
NameDescriptionTypeAdditional information
IsSuccess

boolean

None.

Message

string

None.

Data

Object

None.

Data2

Object

None.

NotificationType

string

None.

CustomReturn

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccess": true,
  "Message": "sample string 2",
  "Data": {},
  "Data2": {},
  "NotificationType": "sample string 5",
  "CustomReturn": "sample string 6"
}

application/xml, text/xml

Sample:
<ServiceResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GIROGAAN.API.Common">
  <CustomReturn>sample string 6</CustomReturn>
  <Data />
  <Data2 />
  <IsSuccess>true</IsSuccess>
  <Message>sample string 2</Message>
  <NotificationType>sample string 5</NotificationType>
</ServiceResponse>