Update Customer Subscription
The code snippet below shows an example request for updating a subscription
POST
https://seerbitapi.com/eactrecurrent/updates
curl --location --request PUT 'https://seerbitapi.com/api/v2/recurring/updates' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_ENCRYPTED_KEY' \
--data '{
"amount":"20000",
"currency":"NGN",
"country":"NG",
"mobileNumber":"08033456500",
"billingId":"PUBK_PjQ5d1578650322483",
"publicKey":"YOUR_PULIC_KEY",
"status":"INACTIVE"
}'
Last updated