Skip to main content
Version: 1.7.0

Delete

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

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.

Request Params

Delete a business record using specific BusinessID

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

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.

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
}