Extend your software with TaxBandits IRS E-file API Integration

Skip to main content
Version: 1.7.3

Delete

Deletes 941SCHR returns by Submission Ids and Record Ids.

DELETE Form941SCHR/Delete

Request Body

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission
RecordIdsstringList of record Ids to be deleted.

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code.
StatusMessagestringDetailed status message.
Form941SchRRecordsobjectPulls the Form 941SCHR records with Success and Error statuses
    SuccessRecordsobject[]It will show the detailed information about the success status of Form 941 Schedule R Records.
        SequenceIdstringA unique number given by an inbound application to identify failed records.
        RecordIdGuidUnique identifier of a record.
        RecordStatusstringReturns the status of the records.
        CreatedTsstringDate and time of return created.
        UpdatedTsstringDate and time of return updated.
        ClientSuccessRecordsobject[]Client Success Status
            CSeqIdstringThis identifies the sequence on the record sent in the pay load. When errors occur we will send the errors attached to particular sequence. Required
            CRecordIdGuidClient Record Identifier
            RecordStatusstringReturn status details like Processing, Created, Accepted, Rejected.
            CreatedTsstringReturn created date and time
            UpdatedTsstringReturn updated date and time
    ErrorRecordsobject[]It will show the detailed information about the error status of Form 941 Schedule R Records
        SequenceIdstringA unique number given by an inbound application to identify failed records.
        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.
        ClientErrorRecordsobject[]Client Error Status
            CSeqIdstringThis identifies the sequence on the record sent in the pay load. When errors occur we will send the errors attached to particular sequence. Required
            CRecordIdGuidClient Record Identifier
            Errorsobject[]It will show the detailed information about the error.
                IdstringIt will return the validation error code.
                NamestringIt will return the name of the validation error.
                MessagestringIt will return the detailed message of the validation error.
Errorsobject[]Shows detailed error information.
    IdstringReturns the validation error code.
    NamestringName of the validation error.
    MessagestringDescription of the validation error.

Request JSON

Form941SCHR/Delete?SubmissionId=8476b2ba-4bca-4e7e-845f-2c06ecaea9be&RecordIds=fc4e001f-6282-4b61-aea2-30e3cdef4fae

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"Form941SchRecords": {
"SuccessRecords": [
{
"SequenceId": "1",
"RecordId": "fc4e001f-6282-4b61-aea2-30e3cdef4fae",
"RecordStatus": "DELETED",
"CreatedTs": "2022-03-03 10:03:00 -04:00",
"UpdatedTs": "2022-03-03 10:03:55 -04:00",
"ClientSuccessRecords": null
}
],
"ErrorRecords": null
},
"Errors": null
}