Deactivate
Deactivate
This endpoint can be used to deactivate any team members. Once deactivated, the corresponding members will no longer be able to access your TaxBandits developer console and/or retail (UI) account.
POST TeamMember/Deactivate Request Body
| Field | Type | Description |
|---|---|---|
| MemberIds | Guid[] | A unique identifier of the team member generated by Taxbandits. Mention the team member's member IDs that you want to deactivate |
Response Body
| Field | Type | Description |
|---|---|---|
| SuccessRecords | object[] | Returns detailed information about the success records |
| MemberId | Guid | A unique identifier of the team member generated by Taxbandits |
| MemberRef | string | Returns unique reference for the team member |
| Status | string | Returns the status of the team member |
| ErrorRecords | object[] | Returns detailed information about the error records |
| MemberId | Guid | A unique identifier of the team member generated by Taxbandits |
| MemberRef | string | Returns unique reference for the team member |
| Errors | object[] | Shows detailed error information |
| Id | string | Returns the validation error ID |
| Name | string | Name of the validation error |
| Message | string | Description of the validation error |
| Errors | object[] | Shows detailed error information |
| Id | string | Returns the validation error ID |
| Name | string | Name of the validation error |
| Message | string | Description of the validation error |
Request JSON
{
"MemberIds":[ "9acb55ea-b6a9-48ed-adf8-738413efa687"]
}
Response JSON
Success Response - This is a sample response for successful API requests.
{
"SuccessRecords": [
{
"MemberId": "9acb55ea-b6a9-48ed-adf8-738413efa687",
"MemberRef": null,
"Status": "DEACTIVATED",
"StatusTs": "2026-01-13 18:54:00 -05:00"
}
],
"ErrorRecords": null,
"Errors": null
}