POST api/BackOffice/HandleProfileCreationByPassport
Receive request to Create a new fast passenger
Request Information
URI Parameters
None.
Body Parameters
authentication request object
CreatePaxProfileByPassportName | Description | Type | Additional information |
---|---|---|---|
ImageData | string |
Required |
|
TripNo | string |
Required |
|
UserName |
The provided user name. |
string |
Required |
Salt |
A random number(at least 9 digits) |
integer |
Required |
Digest |
A digest of the user credentials and the request |
string |
Required |
Request Formats
application/json, text/json
Sample:
{ "ImageData": "sample string 1", "TripNo": "sample string 2", "UserName": "sample string 3", "Salt": 4, "Digest": "sample string 5" }
application/xml, text/xml
Sample:
<CreatePaxProfileByPassport xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" UserName="sample string 3" Salt="4" Digest="sample string 5"> <ImageData>sample string 1</ImageData> <TripNo>sample string 2</TripNo> </CreatePaxProfileByPassport>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
returns the result of the process
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string>sample string 1</string>