Skip to main content
Version: 1.7.3

Delete

Deletes the 1099-Misc Correction return created in TaxBandits. Transmitted returns can not be deleted.

If you need to delete the Transmitted or Accepted status records in Sandbox, you can contact our developer@taxbandits.com.

DELETE Form1099MiscCorrection/Delete 
Run in Postman

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission
RecordIdsGuid[]An unique identifier generated by TaxBandits when a 1099-Misc correction return is created. Mention the 1099-Misc correction return's Record ID that you want to delete.

Request Params

Form1099Misccorrection/DELETE?SubmissionId=12d5f304-6bbc-4438-a9bc-c0631debc8fc&RecordId=71844168-d0ef-4b75-8a93-0a0adf17d1a5

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code
StatusMessagestringDetailed status message
SubmissionIdGuidUnique identifier of a submission
Form1099RecordsobjectPulls the Form 1099 Misc correction records with Success and Error statuses
    SuccessRecordsobject[]It will show the detailed information about the success status of Form 1099 Misc correction Records
        SequenceIdstringAn 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.
        RecordIdGuidUnique identifier of a record
        StatusstringReturns the status of the records.
        StatusTsstringDate and time of return deleted.
    ErrorRecordsobject[]It will show the detailed information about the error status of Form 1099 Misc correction Records.
        SequenceIdstringAn 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.
        RecordIdGuidUnique identifier of a record
        Errorsobject[]Shows detailed error information
            IdstringReturns the validation error code
            NamestringName of the validation error
            MessagestringDescription of the validation error
Errorsobject[]Shows detailed error information
    IdstringReturns the validation error code
    NamestringName of the validation error
    MessagestringDescription of the validation error

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "12d5f304-6bbc-4438-a9bc-c0631debc8fc",
"Form1099Records": {
"SuccessRecords": [
{
"SequenceId": "001",
"RecordId": "f5b9effa-0b00-4ad1-92a2-47d7eb53c93f",
"Status": "DELETED",
"StatusTs": "2023-12-18 08:23:34 -05:00",
"StateReturns": null,
"OnlineAccess": null
}
],
"ErrorRecords": null
},
"Errors": null
}