Extend your software with TaxBandits IRS E-file API Integration

Skip to main content
Version: 1.7.1

CancelSubmission

Cancels a submission by Submission Id.

POST Utility/CancelSubmission

Request Body

FieldTypeDescription
RecordIdsobject[]Contains the list of RecordIds for which you are requesting the pdf URLs
    RecordIdGuidUnique identifier of the return.

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code.
StatusMessagestringDetailed status message.
    SuccessRecordsobject[]Contains the successful cancel records.
        RecordIdGuidUnique identifier of the return.
        StatusstringStatus of the successfully cancelled record
    ErrorRecordsobject[]Contains the error records
        RecordIdGuidUnique identifier of the return.
        StatusstringStatus of the error 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.

Request JSON

{
"RecordIds": [
{
"RecordId": "653e90de-4a99-438e-9fd6-46e903b27891"

}
]
}

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SuccessRecords": [
{
"RecordId": "653e90de-4a99-438e-9fd6-46e903b27891",
"Status": "The ReturnId has been cancelled."
}
],
"ErrorRecords": null,
"Errors": null
}