status
The call to this is endpoint mandatory
This endpoint is used to check status of transaction after completion of payment on Opay website
Process Flow
- Make call to get status passing transactionReference as parameter.
- View response (as described below)
Sample Request
curl --location 'https://qa.interswitchng.com/collections/api/v1/opay/status' \
--header 'Content-Type: application/json' \
--data '{
"reference": "my-very-own-unique-reference"
}'
-XPOST
Sample Response
{
"transactionReference": "my-very-own-unique-reference",
"responseCode": "00"
}
Updated 6 months ago