List
Lists all Form 1099-Misc correction returns created and transmitted on the account for a particular Submission or Payer. Form 1099-Misc correction returns will be listed based on the filters sent in the Request.
GET Form1099MiscCorrection/List
Request Body
Field | Type | Description |
---|---|---|
SubmissionId | Guid | This is a Unique Identifier of a Submission. Use this node, if you want to list the 1099-Misc correction records created under a Submission. Ignore this node, if you want to list the records of a particular Payer. |
BusinessId | Guid | This is a Unique Identifier of a Payer. Use this node, if you want to list all the 1099-Misc correction records created under the Payer. Ignore this node, if you want to list the records for a Submission. |
TINType | string | Mention TIN type and TIN, if you do not have Business ID and want to list all the 1099-Misc correction records created under a Payer. Allowed Values: EIN, SSN |
TIN | string | Employer Identification Number or Social Security Number of the Payer is required only when you have not provided the SubmissionId or the BusinessId |
TaxYear | string | Enter the specific tax year for the list of 1099-Misc correction Records. If the tax year is not given, all tax year records will be listed. |
Page | number | Mention the page number that needs to be listed in the Response. If the value is not given, the page will be defaulted to 1. |
PageSize | number | Provide a numerical value to list the total number of Form 1099-Misc correction records in each page. If the value is not given, then the page size will be defaulted to 10. |
EfileStatus | string | Mention Form 1099-Misc correction record status that needs to be listed. If the value is not given, then records with all the statuses will be listed. |
FromDate | string | Enter a date from which the Form 1099-Misc correction records need to be listed. |
ToDate | string | Enter a date till which the 1099-Misc correction records created are to be listed. |
Response Body
Field | Type | Description |
---|---|---|
StatusCode | number | Returns the HTTP status codes like 200,300 etc. |
StatusName | string | Submission Status |
StatusMessage | string | Status Details |
Form1099Type | string | Denotes the type of 1099 form. |
Form1099Records | object[] | It contains the list of 1099 records. |
SubmissionId | Guid | Unique Identifier of a Submission |
BusinessId | Guid | Unique Identifier of a Payer |
BusinessNm | string | Payer's Name |
EINorSSN | string | Payer's EIN or SSN or Payer's Employer Identification Number or Social Security Number |
ContactNm | string | Contact Name of the Payer. |
TaxYear | string | Tax year of the 1099-Misc correction records. |
Recipient | object | Recipient Details |
SequenceId | string | Sequence ID of the 1099-Misc correction record provided during CREATE or UPDATE |
RecordId | Guid | Unique identifier of the 1099-Misc correction record. |
RecipientId | Guid | Unique identifier of the Recipient. |
RecipientNm | Boolean | Recipient's Name |
TINType | string | Recipient's TIN Type |
TIN | string | Recipient's TIN |
Status | string | Record Status of Form 1099-Misc correction. |
TotalRecords | number | Total records. |
TotalPages | number | Total pages. |
Page | number | List of records mentioned in the Request |
PageSize | number | Total 1099-Misc correction records in the page |
Errors | object[] | Show Error Details |
Id | string | Returns the validation error id |
Name | string | Name of the validation error |
Message | string | Validation error details |
Request JSON
Form1099MiscCorrection/List?SubmissionId=1a333c54-1d01-41bf-8283-f43211e918c4&BusinessId=8d6e3938-2af4-41d2-ba02-17796f00aae2&TINType=SSN&TIN=092115111&TaxYear=2021&Page=1&PageSize=10&EfileStatus=ALL&FromDate=11-01-2021&ToDate=11-30-2021
Response JSON
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"Form1099Type": "MiscCORRECTION",
"Form1099Records": [
{
"SubmissionId": "1a333c54-1d01-41bf-8283-f43211e918c4",
"BusinessId": "8d6e3938-2af4-41d2-ba02-17796f00aae2",
"BusinessNm": "Brian LLC",
"EINorSSN": "092-11-5111",
"ContactNm": "Brian O Relly",
"TaxYear": "2021",
"Recipient": {
"SequenceId": "001",
"RecordId": "1ee98e82-b1f0-43f7-9e0c-95b3a1e90ff9",
"RecipientId": "91676dd6-ddba-41a4-8a9f-3bff130df96b",
"RecipientNm": "Mark Davis",
"TINType": "ATIN",
"TIN": "391-11-4511",
"Status": "CREATED"
}
}
],
"TotalRecords": 1,
"TotalPages": 1,
"Page": 1,
"PageSize": 10,
"Errors": null
}