Status
Lists the current status of Form 1099 NEC correction returns for a particular Submission ID and RecordIds.
GET Form1099NecCorrection/Status
Request Body
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Unique identifier of a submission |
RecordIds | Guid[] | List of record Ids to get the status of Form 1099 NEC. |
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 |
SubmissionId | Guid | Unique identifier of a submission |
BusinessId | Guid | Unique identifier of a Business. |
Form1099Type | string | Denotes the type of 1099 form. |
Form1099Records | object | Pulls Form 1099 NEC correction records with Success and Error statuses |
SuccessRecords | object[] | It will show the detailed information about the success status of Form 1099 NEC correction Records |
SequenceId | string | An 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. |
PrevReportedRecordId | Guid | Returns the PrevReportedRecordId given in the Request. |
RecordId | Guid | An unique identifier generated by TaxBandits when a 1099-NEC correction return is created. |
RecipientId | Guid | An unique identifier generated by TaxBandits for a Recipient when a 1099-NEC correction return is created. You can use this id for your future reference to Update. |
FederalReturn | object | Returns the record status and StatusTs of federal return. |
Status | string | Returns the record status. |
StatusTs | string | Returns date and time of return created. |
Info | string | Returns information about the Federal Filing service. |
StateReturns | object[] | Returns collection of state returns information |
StateCd | string | Returns the state code of the state for which the return is filed. |
Status | string | Returns the record status of the state return. |
StatusTs | string | Date and time of the return created. |
Info | string | Returns the information about the state for which we are not supporting state filing. |
Errors | object[] | Shows error information of state returns of Form 1099 Nec correction |
Id | string | Returns the validation error Id. |
Name | string | Name of the validation error. |
Message | string | Description of the validation error. |
Postal | object | Returns the status and StatusTs of postal mailing service for Form 1099 NEC correction. |
Status | string | Returns the status of postal order. |
StatusTs | string | Returns the date and time of the postal order created. |
Info | string | Returns the information about Postal mailing service. |
OnlineAccess | object | Returns the Email address for whom the online access to be given and Status of online access. |
Status | string | Returns status of online access for Form 1099 NEC correction return. |
string | Email address for whom the online access to be given. | |
Info | string | Information about the online access service. |
ErrorRecords | object[] | It will show the detailed information about the error status of Form 1099 NEC correction Records. |
SequenceId | string | An 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 | Unique identifier of a record |
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 |
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 |
Request JSON
Form1099NecCorrection/Status?SubmissionId=9d71ae45-df5f-49f7-86f8-e88f54132fa1&RecordIds=01132f6d-ef4a-4014-817e-94a5a19bd52b
Response JSON
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "9d71ae45-df5f-49f7-86f8-e88f54132fa1",
"BusinessId": "1cc352d4-6d91-4fd5-a886-7b59b9fbe2e8",
"Form1099Type": "NECCORRECTION",
"Form1099Records": {
"SuccessRecords": [
{
"SequenceId": "001",
"PrevReportedRecordId": null,
"RecordId": "01132f6d-ef4a-4014-817e-94a5a19bd52b",
"RecipientId": "53d7818b-b819-4e51-991c-8ddbcfc1b75c",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2021-01-11 11:00:35 +05:30",
"Info": null
},
"StateReturns": null,
"Postal": {
"Status": "CREATED",
"StatusTs": "2021-01-11 11:00:43 +05:30",
"Info": null
},
"OnlineAccess": {
"Status": "NA",
"Email": null,
"Info": "This Service will be available soon"
}
}
],
"ErrorRecords": null
},
"Errors": null
}