Create Overdraft
The "Create Overdraft" endpoint allows customers to add overdrafts to their accounts. Customers can request to add an overdraft by providing the necessary account information, the desired overdraft limit, and other required parameters.
POST
/api/accountoverdraft/v1/add
Upon successful completion, the overdraft will be added to the customer's account, giving them access to additional funds up to the specified limit.
Headers
Name | Value |
---|---|
Content-Type* |
|
Authorization* |
|
Request-Reference |
|
Body
Name | Data Type (length) | Required | Description |
---|---|---|---|
| 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