Synctera · Schema

external_card_request

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
business_id object
customer_id object
token string The token that was returned via tokenization iframe
View JSON Schema on GitHub

JSON Schema

synctera-external-card-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/external_card_request",
  "title": "external_card_request",
  "properties": {
    "business_id": {
      "$ref": "#/components/schemas/business_id"
    },
    "customer_id": {
      "$ref": "#/components/schemas/customer_id1"
    },
    "token": {
      "description": "The token that was returned via tokenization iframe",
      "type": "string"
    }
  },
  "required": [
    "token",
    "customer_id"
  ],
  "type": "object"
}