Update Blacklist

This shows how to update a blacklist record in your dashboard

PUT {{base_url}}/intelligence/{bvn}/update

This endpoint takes in any fields or data that need to be updated as key and then pass in the new data to be updated.

List of accepted fields

['name', 'bvn', 'phone', 'email', 'loan_amount', 'amount_paid', 'due_date']

Request Body

Name
Type
Description

name

String

New name to be update

{
    "status": "success",
    "message": "Blacklist update",
    "data": {
        "id": 5,
        "name": "Akin",
        "bvn": "12345678901",
        "phone": "080552442441",
        "email": "[email protected]",
        "gender": null,
        "loan_amount": 10000.0,
        "amount_paid": 5000.0,
        "due_date": "2022-08-17",
        "location": null
    }
}

Last updated