List
GET Form1099OID/List
Request Params
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Unique identifier of a submission |
BusinessId | Guid | Unique identifier of a business |
TINType | string | List the 1099-OID records based on the given TINType and TIN. |
TIN | string | List the 1099-OID records based on the given TIN. |
TaxYear | string | List the 1099-OID records based on the given taxyear. |
Page | number | Pulls the records listed in the page selected |
PageSize | number | Number of 1099-OID records to be listed in each page. |
EfileStatus | string | List the 1099-OID records based on the status ("CREATED, UNDERPROCESS, SENTTOAGENCY, TRANSMITTED, ACCEPTED, REJECTED") |
FromDate | string | Enter a date from which the Form 1099-OID records need to be listed in MM/DD/YYYY format. |
ToDate | string | Enter a date till which the 1099-OID records created are to be listed in MM/DD/YYYY format. |
Request Params
"Form1099oid/List?SubmissionId=d203d3ad-7ffe-4018-91ad-0749dd875ed1&TINType=EIN&TIN=703787159&TaxYear=2022&Page=1&PageSize=1"
Response Body
Field | Type | Description |
---|---|---|
StatusCode | number | Returns the HTTP status codes like 200,300 etc. |
StatusName | string | Name of the status code |
StatusMessage | string | Detailed status message |
Form1099Type | string | Denotes the type of 1099 form. |
Form1099Records | object[] | Returns detailed information of the Form 1099-OID records. |
SubmissionId | Guid | Unique identifier of a submission |
BusinessId | Guid | Unique identifier of a business |
PayerRef | string | Unique identifier of the payer. |
BusinessNm | string | Name of the business |
IsEIN | Boolean | When true, identifies the business with an EIN. |
EINorSSN | string | When IsEIN is true, use Employer Identification Number (EIN). When IsEIN is false, use Social Security Number (SSN) |
ContactNm | string | Contact Name of the Business. |
TaxYear | string | Tax year of 1099-OID to be filed. |
Recipient | object | Details of the Recipient. |
SequenceId | string | A unique reference ID for the submission that can be used to identify a particular record. The Sequence ID will be returned in the Response for your reference. |
RecordId | Guid | A unique identifier generated by TaxBandits when a 1099-OID return is created. |
RecipientId | Guid | A unique identifier generated by TaxBandits for a Recipient when a 1099-OID return is created. You can use this id for your future reference to Update. |
RecipientNm | Boolean | Name of Recipient. |
TINType | string | TIN type of the Recipient. |
TIN | string | TIN of the Recipient. |
Status | string | The status of Form 1099-OID. |
TotalRecords | number | Total number of records. |
TotalPages | number | Total number of pages. |
Page | number | Pulls the records listed in the page selected |
PageSize | number | Number of 1099-OID records to be listed in each page. |
Errors | object[] | Shows detailed error information |
Id | string | Returns the validation error id |
Name | string | Name of the validation error |
Message | string | Description of the validation error |
Response JSON
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"Form1099Type": "OID",
"Form1099Records": [
{
"SubmissionId": "932d2691-5e8f-45db-815a-4a97886773b3",
"BusinessId": "001f3e08-390d-4b29-8f52-00519bc6eae4",
"PayerRef": "DEY9EbaE",
"BusinessNm": "Hayes - Fahey and Sons",
"IsEIN": true,
"EINorSSN": "75-7258623",
"ContactNm": "Virgil Anderson",
"TaxYear": "2022",
"Recipient": {
"SequenceId": "1",
"RecordId": "14dc0f70-16c7-48b7-88b0-e1a59315061c",
"RecipientId": "e6954340-58a3-433b-b0cb-d4d3e86be540",
"RecipientNm": "Jabari Blanda",
"TINType": "SSN",
"TIN": "152-94-1675",
}
}
],
"TotalRecords": 1,
"TotalPages": 1,
"Page": 1,
"PageSize": 100,
"Errors": null
}