Repush Notification
Make call to this endpoint to request our system to resend webhook notification for a specific transaction.
POST https://api.oneappgo.com/v1/business/repushnotification
Request Body
Name
Type
Description
reference*
String
This can be your system generated reference or reference received from us for the transaction
{
"status": true,
"message": "Transaction Successfully Sent For Repush"
}Take a look at how you might do this:
curl --location --request GET 'https://api.oneappgo.com/v1/business/repushnotification' \
--header 'Authorization: Bearer SECRET_KEY' \
--header 'Content-Type: application/json' \
--data '{
"reference": "G670846795808"
}var request = require('request');
var options = {
'method': 'GET',
'url': 'https://api.oneappgo.com/v1/business/repushnotification',
'headers': {
'Authorization': 'Bearer SECRET_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"reference": "G670846795808"
})
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
Sample response
{
"status": true,
"message": "Transaction Successfully Sent For Repush"
}Last updated
Was this helpful?