Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dollarpe.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Failure reasons in bank account APIs

New
  • Added failure_reason to bank account API responses. Populated when verification status is FAILED:
    • INVALID_IFSC - Invalid IFSC code.
    • INVALID_ACCOUNT_NUMBER - Invalid account number.
    • ACCOUNT_TYPE_NRE - NRE account type not supported.
    • PENNY_DROP_FAILED - Penny drop verification failed.
    • NAME_MISMATCH - Account holder name mismatch.
    • BANK_RISK_CHECK__FAILED - Bank risk check failed.

Failure reason reference guide

New
  • Published Failure Reason Reference with all failure reason values across API endpoints:
    • Bank verification failure reasons.
    • KYC verification failure reasons.
    • Payin failure reasons.

Error codes

New
  • Added err_code to all 4XX and 5XX responses for machine-readable error classification.
{
    "status": false,
    "message": "Bad Request",
    "data": null,
    "err_code": "INPUT_MALFORMED",
    "errors": {
        "field_name": ["Error message"]
    }
}

Customer creation updates

Improved
  • Customer Create response updated:
    • failure_reason - Returned when status is FAILED, indicating the rejection reason.
    • document_type - Shows the type of document used for verification.

Add KYC updates

Improved
  • Add KYC response updated:
    • failure_reason - Returned when status is FAILED, indicating the rejection reason.