Adyen · Schema

GetTaxFormRequest

GetTaxFormRequest schema from Adyen API

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

accounts-get-tax-form-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/accounts-get-tax-form-request-schema.json",
  "title": "GetTaxFormRequest",
  "description": "GetTaxFormRequest schema from Adyen API",
  "type": "object",
  "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"
  ]
}