Artha API
  1. Cards
  • Introduction
  • Authentication
  • KYC/KYB Requirements
  • API Setup Guide
  • Card API Integration Flow
  • Customers
    • Create Customer
      POST
    • List Customers
      GET
    • Get Customer
      GET
    • Update Customer
      PATCH
  • Cards
    • Submit KYC/KYB Applicant
      POST
    • Get Applicant KYC Status
      GET
    • Issue Card
      POST
    • Cards List
      GET
    • Get Card
      GET
    • Get Sensitive Card Details
      GET
  • Card Operations
    • Activate Card
      POST
    • Freeze Card
      POST
    • Unfreeze Card
      POST
    • Cancel Card
      POST
    • Replace Card
      POST
    • Set / Reset Card PIN
      POST
    • Get Card Limits
      GET
    • Update Card Limits
      POST
  • Funding
    • Top Up Card
      POST
    • Get Top-Up Status
      GET
    • Get Card Balance
      GET
    • List Top-Up History
      GET
  • Transactions
    • List All Transactions
    • List Card Transactions
    • List Customer Transactions
    • Get Transaction
  • Products
    • List Products
    • Get Product
  • Utilities
    • Upload Documents
  • Webhook's
    • Webhooks
  1. Cards

Get Applicant KYC Status

GET
/baseurl/api/v1/customers/{customerId}/products/{productId}/applicantstatus
Get the KYC/KYB application status for a customer and product.
Returns the card holder status from the latest CustomerWallet record, or UnderReview if no record exists or the status is not yet set.
Possible applicantStatus values:
ValueDescription
ApprovedKYC/KYB verified and approved
RejectedKYC/KYB rejected — check remarks for reason
UnderReviewApplication is under manual review or not yet submitted
PendingSubmitted, awaiting review

Request

Path Params

Header Params

Responses

🟢200
application/json
KYC application status retrieved successfully.
Body

🟠401
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/baseurl/api/v1/customers/3fa85f64-5717-4562-b3fc-2c963f66afa6/products/7d444840-9dc0-11d1-b245-5ffdce74fad2/applicantstatus' \
--header 'X-API-Key;' \
--header 'X-Signature;' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Body-Hash;'
Response Response Example
{
    "customerId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "productId": "7d444840-9dc0-11d1-b245-5ffdce74fad2",
    "applicantStatus": "Approved",
    "remarks": "KYC verification completed successfully"
}
Modified at 2026-03-31 11:53:55
Previous
Submit KYC/KYB Applicant
Next
Issue Card
Built with