Decentro · Schema

Decentro Virtual Account

A virtual bank account issued through Decentro for collections or escrow.

BankingBanking-as-a-ServiceFinTechIndiaKYCLedgerPaymentsUPIVirtual Accounts

Properties

Name Type Description
account_number string
ifsc string
customer_id string
purpose string
currency string
balance number
status string
created_at string
View JSON Schema on GitHub

JSON Schema

decentro-virtual-account.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/decentro/json-schema/decentro-virtual-account.json",
  "title": "Decentro Virtual Account",
  "description": "A virtual bank account issued through Decentro for collections or escrow.",
  "type": "object",
  "properties": {
    "account_number": {"type": "string"},
    "ifsc": {"type": "string"},
    "customer_id": {"type": "string"},
    "purpose": {"type": "string"},
    "currency": {"type": "string"},
    "balance": {"type": "number"},
    "status": {"type": "string", "enum": ["ACTIVE", "FROZEN", "CLOSED"]},
    "created_at": {"type": "string", "format": "date-time"}
  },
  "required": ["account_number", "ifsc"]
}