GET api/PaymentAuthorization/{token}
Get the payment authorisation for the specified tour search
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token |
The tour search token |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
PaymentResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| token |
The tour search token |
string |
None. |
| response |
The response object |
PaymentAuthorization |
None. |
| status |
The response status |
ResponseStatus |
None. |
| success |
An indication that the request was successfully completed or failed |
boolean |
None. |
| datestamp |
The date and time that the request was completed |
date |
None. |
Response Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"response": {
"Id": "sample string 1",
"type": "sample string 2",
"paymentGateway": "sample string 3",
"paymentDay": 1,
"amount": 4.1,
"currency": "sample string 5",
"paymentURL": "sample string 6",
"paymentECommPay": null
},
"status": {
"code": 1,
"message": "sample string 2"
},
"success": true,
"datestamp": "2026-08-03T20:53:31.0095412+01:00"
}