Skip to main content
Version: 1.7.3

Delete

Delete

Use this endpoint to delete a W-8BEN form record and its associated data. This is useful for removing test records, deleting incorrectly created records, or supporting your data retention process.

Deletion is permanent and cannot be undone.

Key points

  • Only W-8BEN form records that have not been used in a filed 1099 or 1042-S return can be deleted.
  • If the W-8BEN form was linked to multiple payers, the associated payer links will also be removed.
DELETE FormW8Ben/Delete 

Request Params

FieldTypeDescription
SubmissionIdGuidUnique Identifier for a Submission.
PayeeRefStringUnique identifier of a recipient. Either PayeeRef or Email is required
Size Range: 1-50
EmailStringEmail Address of the recipient.
Size Range: 1-50

Response Body

FieldTypeDescription
FormW8BENRecordsObjectDetails of the W-8BENs requested for delete
SubmissionIdGuidUnique identifier of a submission.
PayeeRefStringUnique identifier of the recipient
EmailStringEmail Address of the recipient.
W8BENStatusStringStatus of the W-8BEN
StatusTsStringTimestamp of the status
ErrorsObjectShows detailed error information.
IdstringError ID number. This ID is assigned by TaxBandits and it is unique for each error.
NamestringName of the errored node.
MessagestringShows the error message

Request Params

Delete a recipient with SubmissionId

FormW8Ben/Delete?SubmissionId=019c8aec-41fe-4b80-883a-441665dc004a

Response JSON

Success Response - This is a sample response for successful API requests.

{
"FormW8BENRecords": [
{
"SubmissionId": "019c8aec-41fe-4b80-883a-441665dc004a",
"PayeeRef": "Pe123451234",
"Email": "mark@sample.com",
"W8BENStatus": "DELETED",
"StatusTs": "2025-02-22 04:24:09 -05:00"
}
],
"Errors": null
}