> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

# Resource: Tax Documents

# Type: Tax Document Object

# Link: https://dev.wix.com/docs/api-reference/business-management/payments/wix-payments-provider/tax-documents/tax-document-object.md

## Description: A tax document is a tax-related form that Wix Payments issues to a merchant, such as a US IRS Form 1099-K.
Each tax document belongs to a Wix Payments account and covers a specific period.
When a document's file is available, you can generate a temporary URL to download it as a PDF.

## Schema:

```json
 Type: Tax Document Object | type: TaxDocument
 Description: A tax document is a tax-related form that Wix Payments issues to a merchant, such as a US IRS Form 1099-K.
Each tax document belongs to a Wix Payments account and covers a specific period.
When a document's file is available, you can generate a temporary URL to download it as a PDF.
       - name: id  | type: string | description: Tax document ID.
           - name: value  | type: string | description: 
       - name: createdDate  | type: string | description: Date and time the tax document was created.
           - name: seconds  | type: string | description: 
           - name: nanos  | type: number | description: 
       - name: updatedDate  | type: string | description: Date and time the tax document was last updated.
       - name: revision  | type: string | description: Revision number, which increments by 1 each time the tax document is updated.
       - name: accountId  | type: string | description: ID of the Wix Payments account the tax document belongs to.
       - name: type  | type: string | description: Type of tax document.
           enum: FORM_1099_K
       - name: period  | type: TaxPeriod | description: Period the tax document covers.
       - name: downloadable  | type: boolean | description: Whether a file is available to download for the tax document. When `false`, calling Generate File Download Info returns an error.  At least one of `downloadable` and `problematic` is always `true`.
       - name: problematic  | type: boolean | description: Whether a problem was found with the tax document's file, for example incorrect data that's being corrected.  At least one of `downloadable` and `problematic` is always `true`, and both can be `true` at the same time.
       - name: sourceType  | type: string | description: How the tax document's amounts are aggregated.
           enum: PAYMENT, PAYOUT
       - name: displayName  | type: string | description: Human-readable name for the tax document's file.

```