The request reactivates a customer's account by passing the accountNumber to the request body. PUT /api/account/v1/activate
accountNumber
PUT
/api/account/v1/activate
Headers
Content-Type*
application/json
Authorization*
Bearer <token>
Request-Reference
{unique-reference}
Body
string (10)
Customer's account number
Here is an example request and response with a sample payload sent to the endpoint in Curl format.
curl --location -g --request PUT '{{baseurl}}/api/account/v1/activate' \ --header 'Content-Type: application/json' \ --header 'Authorization: bearer ' \ --header 'request-reference;' \ --data '{ "accountNumber": "1000000637" }'
Response
//request successful
Last updated 1 year ago