PUT api/Content/v2/PassportManualRequest
Request Information
URI Parameters
None.
Body Parameters
APIPassportRequest| Name | Description | Type | Additional 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": "b20100f0-2bac-475b-b8bc-efdfa3c13c3b",
"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>b20100f0-2bac-475b-b8bc-efdfa3c13c3b</UniqueId> <UserUniqueId>3</UserUniqueId> </APIPassportRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResult| Name | Description | Type | Additional 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>