POST v1/Webhooks/GetDummyNotification
This API is to help developers to get dummy notifications during the implementation phase of webhook APIs. You can provide a dummy order number and a the notification code provided in one of your webhook APIs to recieve a dummy notification to the URI provided in the webhook.
Request Information
URI Parameters
None.
Body Parameters
NotificationRequestDataBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderNo | integer |
Required |
|
| NotificationCode | NotificationCode |
Required |
Request Formats
application/json, text/json
Sample:
{
"orderNo": 1,
"notificationCode": 110
}
Response Information
Resource Description
DummyNotificationWrapperViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| NotificationSentUrl | string |
None. |
|
| ResponseCodeReturned | string |
None. |
|
| ResponseDescriptionReturned | string |
None. |
|
| NotificationSent | Notification |
None. |
Response Formats
application/json, text/json
Sample:
{
"notificationSentUrl": "sample string 1",
"responseCodeReturned": "sample string 2",
"responseDescriptionReturned": "sample string 3",
"notificationSent": {
"orderNo": 1,
"notificationCode": 110,
"notificationDescription": "sample string 2",
"authorizationToken": "sample string 3",
"data": {}
}
}
