Adyen · Schema

DisablePermitRequest

PaymentsFinancial ServicesFintech

Properties

Name Type Description
merchantAccount string The merchant account identifier, with which you want to process the transaction.
token string The permit token to disable.
View JSON Schema on GitHub

JSON Schema

adyen-disablepermitrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DisablePermitRequest",
  "title": "DisablePermitRequest",
  "properties": {
    "merchantAccount": {
      "description": "The merchant account identifier, with which you want to process the transaction.",
      "type": "string"
    },
    "token": {
      "description": "The permit token to disable.",
      "type": "string"
    }
  },
  "required": [
    "merchantAccount",
    "token"
  ],
  "type": "object"
}