Adyen · Schema

DeleteSignatoriesRequest

PaymentsFinancial ServicesFintech

Properties

Name Type Description
accountHolderCode string The code of the account holder from which to delete the signatories.
signatoryCodes array Array of codes of the signatories to be deleted.
View JSON Schema on GitHub

JSON Schema

adyen-deletesignatoriesrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeleteSignatoriesRequest",
  "title": "DeleteSignatoriesRequest",
  "properties": {
    "accountHolderCode": {
      "description": "The code of the account holder from which to delete the signatories.",
      "type": "string"
    },
    "signatoryCodes": {
      "description": "Array of codes of the signatories to be deleted.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "accountHolderCode",
    "signatoryCodes"
  ],
  "type": "object"
}