Adyen · JSON Structure

Accounts Get Tax Form Request Structure

GetTaxFormRequest schema from Adyen API

Type: object Properties: 3 Required: 3
PaymentsFinancial ServicesFintech

GetTaxFormRequest is a JSON Structure definition published by Adyen, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

accountHolderCode formType year

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/accounts-get-tax-form-request-structure.json",
  "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.",
      "type": "int32"
    }
  },
  "required": [
    "accountHolderCode",
    "formType",
    "year"
  ],
  "name": "GetTaxFormRequest"
}