Get
Get
This method will return the completed 1099 MISC transactions of a particular submission or Payer.
The response will have the information such as the Transaction details, PayerRef, Recipient Information, etc.
Key Points:
- If you want to get the details of a particular Submission, provide the SubmissionId in the Get method. Response will provide the entire transaction based on the particular submission.
- Provide parameters other than SubmissionId to get a list of transactions for a specific Payer or Payer/Recipient combination.
GET Form1099MiscTransactions Request Params
| Field | Type | Description |
|---|---|---|
| SubmissionId | Guid | Unique identifier of a submission. |
| BusinessId | Guid | Unique identifier of a business. |
| PayerRef | String | Unique identifier of a business. Set by the client. |
| RecipientId | Guid | Unique identifier of a recipient. |
| PayeeRef | String | Unique identifier of a recipient. Set by the client. |
| TaxYear | String | Taxyear for which you want the transactions to be listed. In the format yyyy. |
| Page | Int | Page number that needs to be listed in the Response. If the value is not given, then the page will be defaulted to 1. |
| TxnFromDate | String | Lists the transaction records between the date range. |
| TxnToDate | String | Lists the transaction records between the date range. |
Response Body
| Field | Type | Description |
|---|---|---|
| Form1099TxnDetails | Object[] | Transaction Details. |
| SubmissionId | Guid | Unique identifier of a submission. |
| TxnData | object[] | Collection of all the transactions from payers to recipients. |
| Business | object | Payer Information. |
| PayerRef | String | Unique identifier of the payer. Set by the client. |
| BusinessId | Guid | TaxBandits Unique Business Identifier. |
| TINType | String | TIN Type of the business. Allowed values: "SSN", "EIN" |
| TIN | String | Taxpayer Identification Number. Size Range: 9-11 |
| Recipients | object[] | Recipient Information. |
| PayeeRef | String | Unique identifier of the recipient. Set by the client. |
| RecipientId | Guid | Unique identifier of the recipient. |
| TINType | String | TIN Type of the recipient. Allowed values: "SSN", "EIN" |
| TIN | String | Taxpayer Identification Number. Size Range: 9-11 |
| Txns | object[] | Collection of Transactions. |
| SequenceID | String | Optional The SequenceId will act as a unique identifier for the transaction. TaxBandits will throw an error when there is an API request with a SequenceId that was previously sent. The SequenceId is an optional node. It can be used to eliminate any chance of duplicate transaction submission. Size Range: ..50 |
| TxnDate | String | Date of transaction. In the format mm/dd/yyyy or mm-dd-yyyy. Transaction date should be given in EST. |
| TxnAmt | String | Transaction Amount. |
| WHAmt | String | Optional Amount withheld. |
| TypeOfPymt | String | Type of payment.Allowed values"BOX1", "BOX2", "BOX3", "BOX5", "BOX6", "BOX8", "BOX9", "BOX10", "BOX11", "BOX12", "BOX13", "BOX14", "BOX15" |
| IsDirectSales | Boolean | Payer made direct sales of $5,000 or more of consumer products to a buyer (recipient) for resale - When true, identifies the payer who made $5,000 or more of selling consumer products to a person on a buy-sell, deposit-commission, or other commission basis for resale (by the buyer or any other person) anywhere other than in a permanent retail establishment. |
| Page | Int | Requested Page Number. |
| TotalRecords | Int | Total number of records returned in the response. |
| TotalPages | Int | Total pages available for the business. |
| PageSize | Int | Requested Page Size. |
| Errors | object | Shows error information. |
Request Params
- Sample 1
- Sample 2
Form1099MISCTransactions?SubmissionId=0a7885ad-b828-4fb6-b3e8-1f418c8ef809&BusinessId=0bbc8702-1853-4320-94f0-4c04209c8309
Form1099MISCTransactions?BusinessId=0bbc8702-1853-4320-94f0-4c04209c8309
Response JSON
- Response 1
- Response 2
{
"Form1099TxnDetails": [
{
"SubmissionId": "0a7885ad-b828-4fb6-b3e8-1f418c8ef809",
"TxnData": [
{
"Business": {
"PayerRef": "3344",
"BusinessId": "0bbc8702-1853-4320-94f0-4c04209c8309",
"TINType": "EIN",
"TIN": "XX-XXX1200",
"DBARef": null,
"DBAId": null
},
"Recipients": [
{
"PayeeRef": "23455667",
"RecipientId": "5d4f4945-dc84-420d-aa50-68fae4aac69a",
"TINType": "SSN",
"TIN": "XXX-XX-6536",
"Txns": [
{
"SequenceId": "01",
"TxnDate": "01/03/2025",
"TxnAmt": "100.11",
"WHAmt": "20.11",
"TypeOfPymt": "BOX1",
"IsDirectSales": false
},
{
"SequenceId": "02",
"TxnDate": "02/06/2025",
"TxnAmt": "345000",
"WHAmt": "20.11",
"TypeOfPymt": "BOX2",
"IsDirectSales": false
},
{
"SequenceId": "03",
"TxnDate": "03/12/2025",
"TxnAmt": "2000.87",
"TypeOfPymt": "BOX3",
"IsDirectSales": false
}
]
}
]
}
]
}
],
"Page": 1,
"TotalRecords": 1,
"TotalPages": 1,
"PageSize": 100,
"Errors": null
}
{
"Form1099TxnDetails": [
{
"SubmissionId": "7f23e4ad-b4c1-4edb-ad83-006e55824f0d",
"TxnData": [
{
"Business": {
"PayerRef": "3344",
"BusinessId": "0bbc8702-1853-4320-94f0-4c04209c8309",
"TINType": "EIN",
"TIN": "XX-XXX1200",
"DBARef": null,
"DBAId": null
},
"Recipients": [
{
"PayeeRef": "23455667",
"RecipientId": "5d4f4945-dc84-420d-aa50-68fae4aac69a",
"TINType": "SSN",
"TIN": "XXX-XX-6536",
"Txns": [
{
"SequenceId": "01",
"TxnDate": "01/03/2025",
"TxnAmt": "1200.34",
"WHAmt": "20.11",
"TypeOfPymt": "BOX1",
"IsDirectSales": false
},
{
"SequenceId": "02",
"TxnDate": "02/06/2025",
"TxnAmt": "3000.11",
"WHAmt": "20.11",
"TypeOfPymt": "BOX2",
"IsDirectSales": false
},
{
"SequenceId": "03",
"TxnDate": "03/12/2025",
"TxnAmt": "1000.00",
"WHAmt": "20.11",
"TypeOfPymt": "BOX3",
"IsDirectSales": false
}
]
},
{
"PayeeRef": "25667",
"RecipientId": "975158bf-ad04-4fef-8678-4c365ebc283d",
"TINType": "SSN",
"TIN": "XXX-XX-6536",
"Txns": [
{
"SequenceId": "01",
"TxnDate": "01/03/2025",
"TxnAmt": "1200.34",
"WHAmt": "20.11",
"TypeOfPymt": "BOX1",
"IsDirectSales": false
},
{
"SequenceId": "02",
"TxnDate": "02/06/2025",
"TxnAmt": "3000.11",
"WHAmt": "20.11",
"TypeOfPymt": "BOX2",
"IsDirectSales": false
},
{
"SequenceId": "03",
"TxnDate": "03/12/2025",
"TxnAmt": "1000.00",
"WHAmt": "20.11",
"TypeOfPymt": "BOX3",
"IsDirectSales": false
}
]
}
]
}
]
}
],
"Page": 1,
"TotalRecords": 1,
"TotalPages": 1,
"PageSize": 100,
"Errors": null
}