Delete
Delete
Use this endpoint to delete 1099 MISC transactions posted in TaxBandits.
- To delete all transactions in a submission, include just the SubmissionId in your API request.
- To delete specific transactions within a submission, include both the SubmissionId and the corresponding SequenceId.
- If you provide only the SequenceId, the corresponding transactions will be deleted across
all submissions.
DELETE Form1099MiscTransactions Request Params
| Field | Type | Description |
|---|---|---|
| SubmissionId | Guid | Unique identifier of a submission. It is generated by TaxBandits. This Id can be retrieved in the response. |
| SequenceId | string | This is a unique identifier for a particular transaction when it is posted to your TaxBandits account. |
Response Body
| Field | Type | Description |
|---|---|---|
| SuccessRecords | object | It will show the detailed information about the success status of the transaction records. |
| SubmissionId | Guid | Unique identifier of a submission. |
| PayeeRef | string | Unique identifier of the recipient. Set by the client. |
| RecipientId | Guid | Unique identifier of the recipient. |
| Txns | object | Collection of Transactions. |
| SequenceID | string | Unique identifier for a particular transaction when it is posted to your TaxBandits account |
| Status | string | Status Message. |
| StatusTs | string | Time Stamp of the status. |
| ErrorRecords | object[] | It will show the detailed information about the error status of the Transaction Records. |
| SequenceId | string | Unique identifier for a particular transaction when it is posted to your TaxBandits account |
| RecordId | Guid | Unique identifier of a record |
| Errors | object | Shows error information. This object will list the errors in the request parameters. |
| Id | string | Returns the validation error Id. |
| Name | string | Name of the validation error. |
| Message | string | Description of the validation error. |
| Errors | object | Shows error information. This object will list the errors in the request parameters. |
| Id | string | Returns the validation error Id. |
| Name | string | Name of the validation error. |
| Message | string | Description of the validation error. |
Request Params
Form1099MISCTransactions?SubmissionId=0a7885ad-b828-4fb6-b3e8-1f418c8ef809
Response JSON
{
"SubmissionId": "0a7885ad-b828-4fb6-b3e8-1f418c8ef809",
"StatusMsg": "Deleted Successfully",
"StatusTs": "2025-10-31 02:13:43 -04:00",
"Errors": null
}
Response JSON
- 200
- 400
- 401
Success Response - You'll get the below response when the request is processed successfully.
{
"SubmissionId": "0a7885ad-b828-4fb6-b3e8-1f418c8ef809",
"StatusMsg": "Deleted Successfully",
"StatusTs": "2025-10-31 02:13:43 -04:00",
"Errors": null
}
Bad Request Response - You'll get the below response when your API requests contain any validation errors.
{
"SubmissionId": "e5ca7490-f8b1-4f6e-9dbf-00243c0b07bb",
"StatusMsg": "Error occurred",
"StatusTs": "2026-08-06 02:48:17 -04:00",
"Errors": [
{
"Id": "F68-100023",
"Name": "SubmissionId",
"Message": "SubmissionId is invalid"
}
]
}
Unauthorized Response - You'll get the below response when your API requests don't contain valid authentication credentials.
{
"StatusCode": 401,
"StatusName": "Unauthorized",
"StatusMessage": "Invalid authorization credentials",
"Errors": [
{
"Id": "AUTH-100001",
"Name": "Authorization",
"Message": "JWT EXPIRED"
}
]
}