Adyen · Schema

GetTaxFormRequest

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
accountHolderCode string The account holder code you provided when you created the account holder.
formType string Type of the requested tax form. For example, 1099-K.
year integer Applicable tax year in the YYYY format.
View JSON Schema on GitHub

JSON Schema

adyen-gettaxformrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetTaxFormRequest",
  "title": "GetTaxFormRequest",
  "properties": {
    "accountHolderCode": {
      "description": "The account holder code you provided when you created the account holder.",
      "type": "string"
    },
    "formType": {
      "description": "Type of the requested tax form. For example, 1099-K.",
      "type": "string"
    },
    "year": {
      "description": "Applicable tax year in the YYYY format.",
      "format": "int32",
      "type": "integer"
    }
  },
  "required": [
    "accountHolderCode",
    "formType",
    "year"
  ],
  "type": "object"
}