POST api/Webhook
Request Information
URI Parameters
None.
Body Parameters
ResponseWebhook| Name | Description | Type | Additional information |
|---|---|---|---|
| gpay_bill_id | string |
None. |
|
| gpay_trans_id | string |
None. |
|
| merchant_order_id | string |
None. |
|
| status | string |
None. |
|
| embed_data | string |
None. |
|
| user_payment_method | string |
None. |
|
| signature | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"gpay_bill_id": "sample string 1",
"gpay_trans_id": "sample string 2",
"merchant_order_id": "sample string 3",
"status": "sample string 4",
"embed_data": "sample string 5",
"user_payment_method": "sample string 6",
"signature": "sample string 7"
}
application/xml, text/xml
Sample:
<ResponseWebhook xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UC_API_REST.Models"> <embed_data>sample string 5</embed_data> <gpay_bill_id>sample string 1</gpay_bill_id> <gpay_trans_id>sample string 2</gpay_trans_id> <merchant_order_id>sample string 3</merchant_order_id> <signature>sample string 7</signature> <status>sample string 4</status> <user_payment_method>sample string 6</user_payment_method> </ResponseWebhook>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |