Skip to main content

Initiate a wallet topup

POST 

https://api.playbox.grow.curacel.co/api/v1/partners/wallet/init-topup

This endpoint allows you to initiate a topup. The response will contain a redirect url to the payment gateway.

Request

Body

The request body to be sent with this request

    amount numberrequired

    The amount to be topped up

    currency stringrequired

    The currency of the amount. You should already have a wallet for this currency

Responses

OK

Schema
    payment_link string

    The payment link to be used to make the payment

Authorization: http

name: bearerAuthtype: httpscheme: bearerbearerFormat: API KEY from your account dashboard
curl -L -X POST 'https://api.playbox.grow.curacel.co/api/v1/partners/wallet/init-topup' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"amount": 10000.2,
"currency": "NGN"
}'
Request Collapse all
Base URL
https://api.playbox.grow.curacel.co/api
Auth
Body
{
  "amount": 10000.2,
  "currency": "NGN"
}
ResponseClear

Click the Send API Request button above and see the response here!