Activate Overdraft

The "Activate Account Overdraft" endpoint allows customers to enable their account overdraft facility, triggering its activation for financial transactions.

PUT /api/accountoverdraft/v1/activate

You must include an existing overdraft id in the request body to activate the overdraft facility for the specified account successfully.

Headers

Name
Value

Content-Type*

application/json

Authorization*

Bearer <token>

Request-Reference

{unique-reference}

Body

Name
Data Type (length)
Required
Description

id

string

Unique identifier for the overdraft account (GUID format)

Here is an example request and response with a sample payload sent to the endpoint in Curl format.

Sample Request
curl --location -g '{{baseurl}}/api/accountoverdraft/v1/activate' \
--header 'Authorization: bearer {token}' \
--header 'request-reference: {unique_reference}' \
--header 'Content-Type: application/json' \
--data '{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  
}'
Respose: 200
{
  "status": true,
  "message": "string"
}

Last updated