Skip to main content
Version: 1.7.3

Delete

Use this endpoint to delete a business from TaxBandits. In the request JSON, you must provide the BusinessId.

DELETE Business/Delete 
Run in Postman

Request Params

FieldTypeDescription
BusinessIdGuidUnique Identifier of the business
EINOrSSNstringEIN/SSN of the business to be deleted.
IsForceDeleteBooleanOptional When 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.


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

Response JSON

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