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"
}
Sample response
{
"status": true,
"message": "Transaction Successfully Sent For Repush"
}
Last updated
Was this helpful?