Synctera · Schema

Identifiers for the account

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
number string The account number. On write, Synctera will store the entire account number; on read, we only return the last 4 characters.
View JSON Schema on GitHub

JSON Schema

synctera-add-accounts-request-account-identifiers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/add_accounts_request_account_identifiers",
  "title": "Identifiers for the account",
  "properties": {
    "number": {
      "description": "The account number. On write, Synctera will store the entire account number; on read, we only return the last 4 characters.\n",
      "example": "78277121",
      "minLength": 1,
      "type": "string"
    }
  },
  "required": [
    "number"
  ],
  "type": "object"
}