Delete
Delete
Use this endpoint to delete any in-progress 1094-C/1095-C returns created in TaxBandits. When deleting, provide unique identifiers such as SubmissionId
, RecordId
, etc. If only the SubmissionId
is provided, all returns associated with that ID will be deleted.
Note: In the Live environment, returns with a Transmitted or Accepted status cannot be deleted. However, in the Sandbox environment, you can delete returns regardless of their status (Transmitted, Rejected, or Accepted).
DELETE Form1095C/Delete
Request Params
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Unique identifier of a submission |
Response Body
Field | Type | Description |
---|---|---|
StatusCode | number | Returns the HTTP status codes like 200,300 etc. |
StatusName | string | Name of the status code. |
StatusMessage | string | Detailed status message. |
SubmissionId | Guid | Unique identifier of a submission |
FormACARecords | object | Pulls the Form ACA 1095C&1094C Records with Success and Error statuses. |
SuccessRecords | object[] | It will show the detailed information about the success status of Form ACA 1095C&1094C Records. |
RecordId | Guid | Unique identifier of a record. |
RecordStatus | string | Returns the status of the records. |
StatusTs | string | Date and time of return deleted. |
ErrorRecords | object[] | It will show the detailed information about the error status of Form ACA 1095C&1094C Records. |
Errors | object[] | Shows detailed error information. |
Code | string | Returns the validation error code. |
Name | string | Name of the validation error. |
Message | string | Description of the validation error. |
Type | string | Type of validation error. |
Request Params
"Form1095C/Delete?SubmissionId=804db093-04f8-4d9a-b061-69097f907732"
Response Json
Success Response - This is a sample response for successful API requests.
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "804db093-04f8-4d9a-b061-69097f907732",
"FormACARecords": {
"SuccessRecords": {
"RecordId": "d62ee546-cdfd-4a53-9f76-f652624e8298",
"RecordStatus": "DELETED",
"StatusTS": "2024-02-16 08:21:44 -05:00"
},
"ErrorRecords": null
},
"Errors": null
}