Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
🚀 Card Payment is live! Learn more
curl --request GET \
--url https://nini.monieswitch.com/checkout/status \
--header 'Authorization: Bearer <token>'
{
"status": true,
"data": {
"checkout": {
"id": "d6914c74-d962-4219-907c-34b0acc41710",
"email": "[email protected]",
"amount": 10000,
"status": "NEW",
"reference": "FJgfVYyMWvIrMdfsrSytZMtIPc58XFEvyXpp",
"hasPaid": false,
"createdAt": "2024-08-02T23:23:04.977Z",
"charges": 250,
"subaccountId": "f16aee43-f1d5-43d7-8f0f-29acf85202bd",
"payableAmount": 10000,
"subaccountShare": 9000,
"hasActiveSubaccount": true,
"subaccountSettlement": 9000,
"mainAccountShare": 1000,
"mainAccountSettlement": 750
}
}
}
curl --request GET \
--url https://nini.monieswitch.com/checkout/status \
--header 'Authorization: Bearer <token>'
{
"status": true,
"data": {
"checkout": {
"id": "d6914c74-d962-4219-907c-34b0acc41710",
"email": "[email protected]",
"amount": 10000,
"status": "NEW",
"reference": "FJgfVYyMWvIrMdfsrSytZMtIPc58XFEvyXpp",
"hasPaid": false,
"createdAt": "2024-08-02T23:23:04.977Z",
"charges": 250,
"subaccountId": "f16aee43-f1d5-43d7-8f0f-29acf85202bd",
"payableAmount": 10000,
"subaccountShare": 9000,
"hasActiveSubaccount": true,
"subaccountSettlement": 9000,
"mainAccountShare": 1000,
"mainAccountSettlement": 750
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.