Delete
Use this endpoint to delete 1099 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 Form1099Transactions
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. |
Request Params
- Sample 1
- Sample 2
- Sample 3
Delete the transaction by providing only a SubmissionId.
Form1099Transactions?SubmissionId=5a086e1f-72b2-433c-8f31-add986300cca
Delete the transaction by providing only a SequenceId.
Form1099Transactions?SequenceId=Payeeref1_1
Delete the transaction by providing both the SubmissionId and SequenceId.
Form1099Transactions?SubmissionId=5a086e1f-72b2-433c-8f31-add986300cca&SequenceId=Payeeref1_2
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. |
Response JSON
- Response 1
- Response 2
- Response 3
All the transactions corresponding to the given SubmissionId will be deleted.
{
"SuccessRecords": [
{
"SubmissionId": "5a086e1f-72b2-433c-8f31-add986300cca",
"PayeeRef": "Payeeref1",
"RecipientId": "9b603d1a-a532-4981-98e8-ffab2bc629dc",
"Txns": [
{
"SequenceId": "Payeeref1_1",
"Status": "Deleted Successfully",
"StatusTs": "2025-05-22 07:20:29 -04:00"
}
]
},
{
"SubmissionId": "5a086e1f-72b2-433c-8f31-add986300cca",
"PayeeRef": "Payeeref1",
"RecipientId": "9b603d1a-a532-4981-98e8-ffab2bc629dc",
"Txns": [
{
"SequenceId": "Payeeref1_2",
"Status": "Deleted Successfully",
"StatusTs": "2025-05-22 07:20:29 -04:00"
}
]
}
],
"ErrorRecords": null,
"Errors": null
}
All the transactions corresponding to the given SequenceId will be deleted.
{
"SuccessRecords": [
{
"SubmissionId": "5a086e1f-72b2-433c-8f31-add986300cca",
"PayeeRef": "Payeeref1",
"RecipientId": "a9bfbb60-4872-472f-841d-0ad4762b20a8",
"Txns": [
{
"SequenceId": "Payeeref81_1",
"Status": "Deleted Successfully",
"StatusTs": "2025-05-26 07:17:04 -04:00"
}
]
}
],
"ErrorRecords": null,
"Errors": null
}
Specific transactions within a submission corresponding to the SequenceId will be deleted.
{
"SuccessRecords": [
{
"SubmissionId": "5a086e1f-72b2-433c-8f31-add986300cca",
"PayeeRef": "Payeeref1",
"RecipientId": "a9bfbb60-4872-472f-841d-0ad4762b20a8",
"Txns": [
{
"SequenceId": "Payeeref1_2",
"Status": "Deleted Successfully",
"StatusTs": "2025-05-26 07:17:04 -04:00"
}
]
}
],
"ErrorRecords": null,
"Errors": null
}