---
title: "Get all tax form submissions"
method: GET
path: "/payout/{user_token}/tax/forms"
tags: ["Tax"]
---

# Get all tax form submissions

`GET /payout/{user_token}/tax/forms`

This **GET** endpoint is used to obtain all previous tax form submissions for the user with the provided user token. <br> To use this endpoint, you need to provide the `user_token` as a parameter in the URL Path.

## Response `200`

OK

- TaxFormSubmission[]
  - `provider` 'TaxBandits' — Tax form provider
  - `submission_id` string, uuid — Unique submission identifier
  - `tax_year` string — Tax year (4 digits)
  - `tax_form` '1099K' | '1099NEC' | '1099MISC' — Type of tax form
  - `status` 'CREATED' | 'TRANSMITTED' | 'SENT_TO_AGENCY' | 'ACCEPTED' | 'REJECTED' | 'ACCEPTED_WITH_ERRORS' | 'YET_TO_RETRANSMIT' — Submission status
  - `fee` number, float — Fee charged for the submission
  - `currency` string — Currency of the fee
  - `gross_amount` number, float — Gross amount reported
  - `supplemental_gross_amount` number, float — Supplemental gross amount
  - `is_postal` boolean — Whether postal delivery was used
  - `time_created` string, date-time — Timestamp of submission creation
  - `files_content` TaxFormFileContent
    - `file_name` string — Name of the tax form file
    - `content` string — Base64 encoded content of the file

## Other responses

- `400` — Bad request.
- `401` — Unauthorized.
- `403` — Forbidden.
- `404` — Not Found
- `405` — Method Not Allowed.
- `500` — Internal server error.
- `504` — Gateway Time-out.

---

[API](https://skmtc.net/masspay/apis/masspay-api.md) · [All operations](https://skmtc.net/masspay/apis/masspay-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/masspay/masspay-api/versions/c03b61a6a551/schema)
