# 1099 status tracking

Source: https://developer.avalara.com/products/avalara-1099-and-w9/integration-guides/1099-and-w-9/tdc1023343252998/

Guide: 1099 & W-9

# 1099 status tracking

Learn how to track the status of 1099 forms using specific endpoints and parameters.

Use the following endpoints and parameters to track the status of 1099 forms:

Task

Use case

Endpoint/Parameter

API Document

Requirement

[Retrieve forms by issuer](https://developer.avalara.com/1099-and-w-9/ctb1706221641611/)

List all 1099 forms for a given issuer

`GET /1099/forms?$filter=issuerId eq {issuerId}`

[List1099Forms](https://developer.avalara.com/api-reference/avalara1099/avalara1099/methods/Forms%201099/List1099Forms/)

Suggested

[Retrieve unscheduled forms](https://developer.avalara.com/1099-and-w-9/ctb1706221641611/)

List forms that you haven't yet scheduled for federal e-filing

`GET /1099/forms?$filter=federalEfileStatus=unscheduled`

[List1099Forms](https://developer.avalara.com/api-reference/avalara1099/avalara1099/methods/Forms%201099/List1099Forms/)

Suggested

[Retrieve undelivered forms](https://developer.avalara.com/1099-and-w-9/ctb1706221641611/)

Identify forms pending e-delivery

`GET /1099/forms?$filter=edeliverystatus=requested`

[List1099Forms](https://developer.avalara.com/api-reference/avalara1099/avalara1099/methods/Forms%201099/List1099Forms/)

Suggested

[Retrieve recently updated](https://developer.avalara.com/1099-and-w-9/ctb1706221641611/)

Return forms modified within a recent time window

`GET /1099/forms?$filter=updatedAt>yyyy-mm-dd`

[List1099Forms](https://developer.avalara.com/api-reference/avalara1099/avalara1099/methods/Forms%201099/List1099Forms/)

Suggested

[Retrieve invalid forms](https://developer.avalara.com/1099-and-w-9/ctb1706221641611/)

Identify forms marked invalid due to validation failures

`GET /1099/forms?$filter=validity=false`

[List1099Forms](https://developer.avalara.com/api-reference/avalara1099/avalara1099/methods/Forms%201099/List1099Forms/)

Suggested

[Retrieve TIN match failures](https://developer.avalara.com/1099-and-w-9/ctb1706221641611/)

Show forms where TIN validation with IRS failed

`GET /1099/forms?$filter=tinMatchStatus=failed`

[List1099Forms](https://developer.avalara.com/api-reference/avalara1099/avalara1099/methods/Forms%201099/List1099Forms/)

Suggested