Update Overdraft
This API endpoint is used to update the overdraft settings for a specific account. You can modify the overdraft settings for the specified account by making a PUT request to this endpoint and providing the necessary account information in the request body.
PUT
/api/accountoverdraft/v1/update
You must provide an existing overdraft id
for your request to be successful.
Headers
Name | Value |
---|---|
Content-Type* |
|
Authorization* |
|
Request-Reference |
|
Body
Name | Data Type (length) | Required | Description |
---|---|---|---|
| string | Unique identifier for the overdraft account (GUID format) | |
| string | The customer's account number (NUBAN) for the overdraft | |
| integer | The overdraft limit amount The amount should be sent in the currency base unit. For example, 1000 naira will be sent as 1000 * 100 | |
| integer | The tenure or duration of the overdraft in months | |
| date | The start date of the overdraft | |
| boolean | Indicates whether to use the default fee. Set | |
| array of objects | A list of fee codes must be provided if not using the default. Overdraft fees can be configured in the Fee Section on Udara 360. | |
└─ | string | Specific fee code | |
| integer | The fee amount, if not using the default | |
| boolean | Indicates whether to use the default interest rate | |
| string | If you don't want to use the default settings, you can customize the interest code. Credit interest configuration is available in the Fee Section of Udara 360 | |
| integer | Interest amount, if not using default | |
| boolean | Indicates whether security is pledged for the overdraft by setting | |
| string | Type of security pledged
The enumerations are:
| |
| integer | Valuation of the pledged security | |
| string | Description or purpose of the overdraft | |
| string | Name of the guarantor for the overdraft | |
| string | Phone number of the guarantor |
Here is an example request and response with a sample payload sent to the endpoint in Curl format.
Last updated