Synctera · Schema

digital_wallet_token_edit_request

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
token_status string The status indicating the digital wallet token lifecycle state
View JSON Schema on GitHub

JSON Schema

synctera-digital-wallet-token-edit-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/digital_wallet_token_edit_request",
  "title": "digital_wallet_token_edit_request",
  "properties": {
    "token_status": {
      "description": "The status indicating the digital wallet token lifecycle state",
      "enum": [
        "ACTIVE",
        "SUSPENDED",
        "TERMINATED"
      ],
      "type": "string"
    }
  },
  "required": [
    "token_status"
  ],
  "type": "object"
}