PUT api/Content/v3/PassportManualRequest

Request Information

URI Parameters

None.

Body Parameters

APIPassportRequest
NameDescriptionTypeAdditional information
CustomerId

integer

None.

UniqueId

globally unique identifier

None.

UserUniqueId

integer

None.

ImageType

integer

None.

Photo

string

None.

LoyaltyEventId

integer

None.

Latitude

decimal number

None.

Longitude

decimal number

None.

LocationId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "UniqueId": "c1f8cfcd-4749-47c0-9d95-886f05374e30",
  "UserUniqueId": 3,
  "ImageType": 4,
  "Photo": "sample string 5",
  "LoyaltyEventId": 6,
  "Latitude": 7.0,
  "Longitude": 8.0,
  "LocationId": 9
}

application/xml, text/xml

Sample:
<APIPassportRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <CustomerId>1</CustomerId>
  <ImageType>4</ImageType>
  <Latitude>7</Latitude>
  <LocationId>9</LocationId>
  <Longitude>8</Longitude>
  <LoyaltyEventId>6</LoyaltyEventId>
  <Photo>sample string 5</Photo>
  <UniqueId>c1f8cfcd-4749-47c0-9d95-886f05374e30</UniqueId>
  <UserUniqueId>3</UserUniqueId>
</APIPassportRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIResult
NameDescriptionTypeAdditional information
Status

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <Message>sample string 2</Message>
  <Status>true</Status>
</APIResult>