Extend your software with TaxBandits IRS E-file API Integration

Skip to main content
Version: 1.7.3

Delete

This method will be used to delete a particular business request or a submission by using EIN or Business Id.

DELETE Business/Delete

Request Body

FieldTypeDescription
BusinessIdGuidUnique Identifier of the business
EinOrSSNstringEIN/SSN of the business to be deleted.
IsForceDeleteBooleanWhen true, deletes a business without validating whether the business has returns or not.

Response Body

FieldTypeDescription
StatusCodenumberReturns the status codes like 200,300 etc.
StatusNamestringName of the status code.
StatusMessagestringDetailed status message
BusinessIdGuidUnique Identifier of the business
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: Delete a business record using specific BusinessID

"Business/Delete?BusinessId=5b0aedcc-96f5-44ea-8643-c1fd1515398c&EINOrSSN=003313331&isForceDelete=True"

Response JSON: Response will delete the particular business in regards to the BusinessID.

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"BusinessId": "9094e428-8aca-46b0-873b-be9cc679f1b9",
"Errors": null
}