POST api/applicant/Payment/SavePaymentWebhook
Request Information
URI Parameters
None.
Body Parameters
SavePaymentWebhookDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| PaymentID | integer |
None. |
|
| EventName | string |
None. |
|
| Gateway | string |
None. |
|
| EventID | string |
None. |
|
| Signature | string |
None. |
|
| Payload | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PaymentID": 1,
"EventName": "sample string 1",
"Gateway": "sample string 2",
"EventID": "sample string 3",
"Signature": "sample string 4",
"Payload": "sample string 5"
}
application/xml, text/xml
Sample:
<SavePaymentWebhookDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tourism.Entities.CustomApplicationModels"> <EventID>sample string 3</EventID> <EventName>sample string 1</EventName> <Gateway>sample string 2</Gateway> <Payload>sample string 5</Payload> <PaymentID>1</PaymentID> <Signature>sample string 4</Signature> </SavePaymentWebhookDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiResponseOfutblPaymentWebhookLog| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | utblPaymentWebhookLog |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Data": {
"WebhookID": 1,
"PaymentID": 1,
"EventName": "sample string 2",
"Gateway": "sample string 3",
"EventID": "sample string 4",
"Signature": "sample string 5",
"Payload": "sample string 6",
"IsProcessed": true,
"ProcessedOn": "2026-08-23T20:45:12.2303779+05:30",
"ReceivedOn": "2026-08-23T20:45:12.2303779+05:30"
}
}
application/xml, text/xml
Sample:
<ApiResponseOfutblPaymentWebhookLogTtyOigqL xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tourism.Entities.Models">
<Data>
<EventID>sample string 4</EventID>
<EventName>sample string 2</EventName>
<Gateway>sample string 3</Gateway>
<IsProcessed>true</IsProcessed>
<Payload>sample string 6</Payload>
<PaymentID>1</PaymentID>
<ProcessedOn>2026-08-23T20:45:12.2303779+05:30</ProcessedOn>
<ReceivedOn>2026-08-23T20:45:12.2303779+05:30</ReceivedOn>
<Signature>sample string 5</Signature>
<WebhookID>1</WebhookID>
</Data>
<Message>sample string 2</Message>
<Success>true</Success>
</ApiResponseOfutblPaymentWebhookLogTtyOigqL>