Skip to main content
Version: 1.7.3

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

FieldTypeDescription
    MemberIdsGuid[]A unique identifier of the team member generated by Taxbandits. Mention the team member's member IDs that you want to deactivate

Response Body

FieldTypeDescription
    SuccessRecordsobject[]Returns detailed information about the success records
    MemberIdGuidA unique identifier of the team member generated by Taxbandits
    MemberRefstringReturns unique reference for the team member
    StatusstringReturns the status of the team member
    ErrorRecordsobject[]Returns detailed information about the error records
    MemberIdGuidA unique identifier of the team member generated by Taxbandits
    MemberRefstringReturns unique reference for the team member
    Errorsobject[]Shows detailed error information
        IdstringReturns the validation error ID
        NamestringName of the validation error
        MessagestringDescription of the validation error
    Errorsobject[]Shows detailed error information
        IdstringReturns the validation error ID
        NamestringName of the validation error
        MessagestringDescription 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
}