Skip to main content
Version: 1.7.0

Delete

Deletes Online 94X PIN request records by Submission Id and Record Ids.

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

DELETEOnline94xPINRequest/Delete
Run in Postman

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission.

Request Params

"Online94xPINRequest/Delete?SubmissionId=a9de5911-0e00-4d98-93f2-5495b143ec01"

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.
Online94xPINRecordsobjectPulls the Online 94X PIN request records with Success and Error statuses.
    SuccessRecordsobject[]It will show the detailed information about the success status of Form 941 Records
        SequencestringA 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.
    ErrorRecordsobject[]It will show the detailed information about the error status of Form 941 Records
        SequencestringA unique number given by an inbound application to identify failed records.
        RecordIdGuidUnique identifier of a record
        Errorsobject[]Shows detailed error information.
            CodestringReturns the validation error code.
            NamestringName of the validation error.
            MessagestringDescription of the validation error.
            TypestringType of validation error.
Errorsobject[]Shows detailed error information.
    CodestringReturns the validation error code.
    NamestringName of the validation error.
    MessagestringDescription of the validation error.
    TypestringType of validation error.

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "144b8a27-5802-46c5-b1f6-0510026ca46a",
"Online94xPINRecords": {
"SuccessRecords": [
{
"Sequence": null,
"RecordId": "e4b666b2-54a0-4753-92e0-d94d7a2a6ae0",
"RecordStatus": "DELETED",
"CreatedTs": "2019-08-02 03:40:42 -04:00",
"UpdatedTs": "2019-08-02 03:40:42 -04:00"
}
],
"ErrorRecords": null
},
"Errors": null
}