Report individual defaulter

POST /creditregistry/api/v1/report/individual

Report a delinquent facility where the account owner is an individual.

Required body fields

FieldNotes
accountNumberYour unique loan/account identifier.
bvn11-digit BVN.
firstName, lastNameBorrower name.
middleNameOptional; empty string if none.
dateOfBirthISO date, e.g. 1990-05-15.
genderMale, Female, or Unknown.
phone, emailValid contact details.
addressLine1, city, stateAddress.
countryOptional; defaults to Nigeria if omitted in mapping.
principal, outstandingBalance, minimumInstallmentAmounts.
daysInArrearsDrives delinquency band (see catalog).
accountStatusDate, dateOpened, balanceDate, maturityDateISO dates.
currencyTypically NGN.
accountTypeFrom catalog (e.g. PersonalLoan).
purpose, term, repaymentFrequency, interestRate, interestTypeLoan terms.
branchName, branchAddressBranch metadata.
customerNumberOptional; defaults to bvn.
referenceOptional client reference for support.

Optional: guarantors

Array of persons with the same required fields as the borrower (BVN, name, DOB, gender, phone, email, address).

Request (example)

{
    "accountNumber": "9072859752",
    "bvn": "22200021533",
    "customerNumber": "",
    "firstName": "Test",
    "lastName": "Borrower",
    "middleName": "",
    "dateOfBirth": "1990-05-15",
    "gender": "Male",
    "phone": "08012345678",
    "email": "[email protected]",
    "addressLine1": "12 Admiralty Way",
    "addressLine2": "Lekki Phase 1",
    "city": "Lagos",
    "state": "Lagos",
    "country": "Nigeria",
    "principal": 500000,
    "outstandingBalance": 425000,
    "daysInArrears": 45,
    "accountStatusDate": "2026-09-01",
    "dateOpened": "2025-03-01",
    "balanceDate": "2026-09-01",
    "minimumInstallment": 45000,
    "currency": "NGN",
    "accountType": "PersonalLoan",
    "purpose": "Working capital",
    "term": "12 months",
    "repaymentFrequency": "Monthly",
    "interestRate": 24,
    "interestType": "Fixed",
    "maturityDate": "2026-03-01",
    "branchName": "Head Office",
    "branchAddress": "Victoria Island, Lagos",
    "reference": "REF-TEST-IND-001",
    "guarantors": [
      {
        "bvn": "22200022408",
        "customerNumber": "",
        "firstName": "Test",
        "lastName": "Guarantor",
        "middleName": "",
        "dateOfBirth": "1988-11-20",
        "gender": "Female",
        "phone": "08098765432",
        "email": "[email protected]",
        "addressLine1": "5 Broad Street",
        "addressLine2": "",
        "city": "Lagos",
        "state": "Lagos",
        "country": "Nigeria"
      }
    ]
  }

Success response (example)

{
  "status": true,
  "message": "Submission accepted",
  "transactionRef": "N202609181113478792",
  "data": {
    "submissionId": "6baef1cd60ff4aa999bc1b1c91276df",
    "uploadId": "1776221",
    "accountNumber": "LOAN-12345",
    "processingStatus": "Queued"
  }
}

Store submissionId for status polling.