Transaction Notification Resend
By default, Monnify attempts to notify you of completed transactions 12 times with an interval of 5 minutes. However, there are times when inability of your system to receive these notifications extend beyond the automated retries.
This API can be used to resend all failed notifications over a time period starting from the beginning of the current year.
Endpoint URL: https://sandbox.monnify.com/api/v1/transaction-notification/resend-failed-notifications
HTTP Method: POST
Please note that this endpoint is protected using OAuth2 Token. Visit Authentication section of this document for details on getting access token.
Sample Request
{
"startDate": "2021-01-16T13:56:39.492",
"endDate": "2021-10-16T13:56:39.492"
}
Sample Response
{
"requestSuccessful": true,
"responseMessage": "success",
"responseCode": "0",
"responseBody": {
"recordsFound": 32
}
}
Field Reference
(M) indicates fields that are mandatory in the request body. (m) Indicates fields that are mandatory only if the parent object is not empty.
Field | Description |
---|---|
startDate | Date from which transactions should be checked |
endDate | Date to which transactions should be checked |
recordsFound | Number of transactions found for which notifications would be resent. |
Â
Note
Please note that this only applies for payment collection notifications, i.e. card and account transfer payments. Resend functionality for event based webhooks is in progress.