Skip to main content
Version: 1.7.3

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 
Run in Postman

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission. It is generated by TaxBandits. This Id can be retrieved in the response.
SequenceIdstringThis is a unique identifier for a particular transaction when it is posted to your TaxBandits account.

Request Params

Delete the transaction by providing only a SubmissionId.

Form1099Transactions?SubmissionId=5a086e1f-72b2-433c-8f31-add986300cca

Response Body

FieldTypeDescription
SuccessRecordsobjectIt will show the detailed information about the success status of the transaction records.
SubmissionIdGuidUnique identifier of a submission.
PayeeRefstringUnique identifier of the recipient. Set by the client.
RecipientIdGuidUnique identifier of the recipient.
TxnsobjectCollection of Transactions.
   SequenceIDstringUnique identifier for a particular transaction when it is posted to your TaxBandits account
   StatusstringStatus Message.
   StatusTsstringTime Stamp of the status.
ErrorRecordsobject[]It will show the detailed information about the error status of the Transaction Records.
    SequenceIdstringUnique identifier for a particular transaction when it is posted to your TaxBandits account
   RecordIdGuidUnique identifier of a record
   ErrorsobjectShows error information. This object will list the errors in the request parameters.
       IdstringReturns the validation error Id.
       NamestringName of the validation error.
       MessagestringDescription of the validation error.
ErrorsobjectShows error information. This object will list the errors in the request parameters.
    IdstringReturns the validation error Id.
   NamestringName of the validation error.
    MessagestringDescription of the validation error.

Response JSON

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
}