Synctera · Schema

Remote Check Deposit feedback

Approve or reject deposit transactions

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
feedback string The value of the feedback for the deposit transaction
View JSON Schema on GitHub

JSON Schema

synctera-deposit-feedback-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/deposit_feedback",
  "title": "Remote Check Deposit feedback",
  "description": "Approve or reject deposit transactions",
  "properties": {
    "feedback": {
      "description": "The value of the feedback for the deposit transaction",
      "enum": [
        "APPROVE",
        "REJECT"
      ],
      "type": "string"
    }
  },
  "type": "object"
}