Synctera · Schema

transfer_type

Type of operation for transfer. Type | Description --- | --- PUSH | Push fund to the external card from the account_id PULL | Pull funds from the external card to the account_id.

FinTechBaaSBankingPaymentsCard IssuingKYC
View JSON Schema on GitHub

JSON Schema

synctera-transfer-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/transfer_type",
  "title": "transfer_type",
  "description": "Type of operation for transfer.\n\nType | Description\n--- | ---\nPUSH | Push fund to the external card from the account_id\nPULL | Pull funds from the external card to the account_id.\n",
  "enum": [
    "PULL",
    "PUSH"
  ],
  "example": "PULL",
  "type": "string"
}