Skip to main content
Version: 1.7.3

Get

Get

This endpoint can be used to retrieve the details of the team members added to your TaxBandits account.

Your request JSON must include the 'MemberId', 'MemberRef', or 'MemEmail'.

GET TeamMember/Get 

Request Params

FieldTypeDescription
        MemberIdGuidA unique identifier of the team member
        MemberRefstringA Unique reference of the team member
        MemEmailstringEmail of the team member

Response Body

FieldTypeDescription
    MemberIdGuidA Unique identifier of the team member generated by Taxbandits
    MemberRolestringReturns the assigned role for the team member
    MemberNmstringReturns the team member name
    MemberEmailstringReturns the email address of the team member
    MemberRefstringReturns the unique reference of the team member
    StatusstringReturns the invite status of the team member
    StatusTsstringReturns the date and time of the team member invite
    AsgnGroupobject[]Gets the assigned group details for the team member
        GroupIdGuidA Unique identifier of the group generated by Taxbandits
        GroupRefstringUnique reference of the group
        StatusstringReturns the invite status of the team member
        StatusTsstringReturns the date and time of the team member invite
    AsgnPayersobject[]Gets the assigned payer details for the team member
        BusinessIdGuidA unique identifier of the Business
        PayerRefstringA Unique reference of the payer
        StatusstringReturns the invite status of the team member
        StatusTsstringReturns the date and time of the team member invite
    ErrorRecordsobject[]Returns detailed information about the error records
    SequenceIdstringA unique reference ID that can be used to identify a team member's details
    MemberIdGuidA Unique identifier of the team member generated by Taxbandits
    MemberRolestringAssigned role for the team member
    MemberRefstringUnique reference of the team member
    AsgnGroupobject[]Gets the assigned group details for the team member
        GroupIdGuidA Unique identifier of the group generated by Taxbandits
        GroupRefstringUnique reference of the group
    AsgnPayersobject[]Gets the assigned payer details for the team member
        BusinessIdGuidA unique identifier of the Business
        PayerRefstringA Unique reference of the payer
        StatusstringReturns the invite status of the team member
        StatusTsstringReturns the date and time of the team member invite
    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 Params

"TeamMember/Get?MemberId=f1f23a2c-a9fc-4d7d-b8e1-654f540f63dd"

Response JSON

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

{
"MemberId": "70cbd19e-7b25-42fb-9581-bfcf9a24f059",
"MemberRole": "TEAM_MEMBER",
"MemberNm": "Camille Henderson",
"MemberEmail": "james@sample.com",
"MemberRef": null,
"Status": "INVITED",
"StatusTs": "2026-01-13 18:45:03 -05:00",
"AsgnGroups": [
{
"GroupId": 12897,
"GroupRef": null
}
],
"AsgnPayers": [
{
"BusinessId": "b11b1df1-bb1a-4b5a-b593-7cceb6aaa369",
"PayerRef": "Snow12345"
},
{
"BusinessId": "c5482a71-5904-4afd-bcd3-ca21a42a276a",
"PayerRef": "Snow Corp 123"
}
],
"Errors": null
}