Add Blacklist
This shows how to add upload blacklist to your dashboard
POST
{{base_url}}/intelligence/blacklist/add
Request Body
Name
Type
Description
name*
String
Customer Name
bvn*
String
Customer BVN
phone
String
Customer Mobile Number
email*
String
Customer email
loan_amount*
String
Amount borrowed
amount_paid*
String
Amount paid
due_date*
String
Due date (2022-08-17)
{
"status": "success",
"message": "Blacklist added",
"data": {
"id": 5,
"name": "Samson",
"bvn": "12345678901",
"phone": "080552442441",
"email": "[email protected]",
"gender": null,
"loan_amount": "10000",
"amount_paid": "5000",
"due_date": "2022-08-17",
"location": null
}
}
Last updated