Deactivate Account Overdraft
Name
Value
Name
Data Type (length)
Required
Description
Last updated
This endpoint allows customers to disable their account overdraft.
PUT /api/accountoverdraft/v1/deactivate
You must include an existing overdraft id in the request body to deactivate the overdraft successfully.
Headers
Content-Type*
application/json
Authorization*
Bearer <token>
Request-Reference
{unique-reference}
Body
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.
curl --location -g '{{baseurl}}/api/accountoverdraft/v1/deactivate' \
--header 'Authorization: bearer {token}' \
--header 'request-reference: {unique_reference}' \
--header 'Content-Type: application/json' \
--data '{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}'
Last updated