Synctera · Schema

Transaction Reverse Request

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
description string The description of the transaction
force_post boolean Whether or not the hold was forced (spending controls ignored)
offset_description string The description of the offset transaction
reason string The reason for the reversal
reference_id string An external ID provided by the payment network to represent this transaction. This will always be null for internal transfers.
user_data object
View JSON Schema on GitHub

JSON Schema

synctera-transaction-reverse-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/transaction_reverse_request",
  "title": "Transaction Reverse Request",
  "properties": {
    "description": {
      "description": "The description of the transaction",
      "type": "string"
    },
    "force_post": {
      "description": "Whether or not the hold was forced (spending controls ignored)",
      "type": "boolean"
    },
    "offset_description": {
      "description": "The description of the offset transaction",
      "type": "string"
    },
    "reason": {
      "description": "The reason for the reversal",
      "type": "string"
    },
    "reference_id": {
      "description": "An external ID provided by the payment network to represent this transaction. This will always be null for internal transfers.",
      "nullable": true,
      "type": "string"
    },
    "user_data": {
      "$ref": "#/components/schemas/user_data"
    }
  },
  "required": [
    "user_data",
    "reason",
    "force_post",
    "reference_id"
  ],
  "type": "object"
}