Unfreeze Customer Account

This endpoint unfreezes a customer's account, allowing them to perform debit and credit transactions.

PUT /api/account/v1/unfreeze

To unfreeze a customer's account, you need to pass accountNumber in the request body to the freeze account endpoint. You need to make sure the

To avoid an error response on your request, make sure the accountNumber is a previously frozen account.

Headers

NameValue

Content-Type*

application/json

Authorization*

Bearer <token>

Request-Reference

{unique-reference}

Body

NameData Type (length)RequiredDescription

accountNumber

string

Customer's account number

Sample Request
curl --location -g --request PUT '{{baseurl}}/api/account/v1/unfreeze' \
--header 'Content-Type: application/json' \
--header 'Authorization: bearer ' \
--header 'request-reference;' \
--data '{
  "accountNumber": "1000000730"
}'

Response

//request successful

Last updated