Skip to main content
Version: 2.0

UnassignRecipient

UnassignRecipient

This endpoint unlinks one or more recipients from a specific business. The recipients are not deleted — they remain in TaxBandits and can be re-assigned later.

POST recipient/unassignrecipients 

Request Body

FieldTypeDescription
BusinessIdGUIDTaxBandits-generated unique identifier for the business.
PayerRefStringOptional Your unique identifier for the business.
UnAssignRecipientsObject []An array of recipient objects to unassign from the business.
SequenceIdStringOptional A unique reference ID for the submission that can be used to identify a particular record. The Sequence ID will be returned in the Response for your reference.

Max 10 characters
RecipientIdGUIDUnique identifier of the recipient. Required if PayeeRef is not provided.
PayeeRefStringOptional Your unique identifier for the recipient. Required if RecipientId is not provided.

Response Body

FieldTypeDescription
BusinessIdGUIDTaxBandits-generated unique identifier for the business.
PayerRefStringYour unique identifier for the business.
SuccessRecipientsObject []Recipient records that were unassigned successfully.
SequenceIdStringA unique reference ID for the submission that can be used to identify a particular record.
RecipientIdGUIDUnique identifier of the recipient.
PayeeRefStringYour unique identifier for the recipient.
StatusStringStatus of the operation.
StatusTsStringDate and time the operation was completed.
ErrorRecipientsObject []Records that failed, with details on why.
SequenceIdStringA unique reference ID for the submission that can be used to identify a particular record.
RecipientIdGUIDIdentifier of the failed recipient.
PayeeRefStringYour unique identifier for the recipient.
ErrorsObject []Validation error details.
IdStringValidation error code.
NameStringName of the validation rule that failed.
MessageStringDescription of the error.
ErrorsObject []Top-level request errors if the entire request cannot be processed.
IdStringValidation error code.
NameStringName of the validation rule that failed.
MessageStringDescription of the error.

Request JSON

{
"BusinessId": "09c218b3-15e4-4b3e-a0fe-8b2376098b99",
"PayerRef": "PAYER105",
"UnAssignRecipients": [
{
"SequenceId": "01",
"RecipientId": "d67539c3-0603-4fb7-9a29-3ae15339269a",
"PayeeRef": "PAYEE001"
}
]
}

Response JSON

{
"BusinessId": "09c218b3-15e4-4b3e-a0fe-8b2376098b99",
"PayerRef": "PAYER105",
"SuccessRecipients": [
{
"SequenceId": "01",
"RecipientId": "d67539c3-0603-4fb7-9a29-3ae15339269a",
"PayeeRef": "PAYEE001",
"Status": "UNASSIGNED",
"StatusTs": "2026-07-09 06:43:50 -04:00"
}
],
"ErrorRecipients": null,
"Errors": null
}