Skip to main content
Version: 1.7.3

Status

Status

This endpoint can be used to retrieve the status of a team member.

GET TeamMember/Status 

Request Params

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

Response Body

FieldTypeDescription
    MemberIdGuidA unique identifier of the team member generated by Taxbandits
    MemberRolestringAssigned role for the team member
    MemberRefstringReturns unique reference for the team member
    MemberNmstringReturns the team member name
    MemberEmailstringReturns the email address 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
    Errorsobject[]Shows the error information of state returns
        IdstringReturns the validation error ID
        NamestringName of the validation error
        MessagestringDescription of the validation error

Request Params

"TeamMember/Status?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",
"MemberRef": null,
"MemberNm": "Camille Henderson",
"MemberEmail": "james@sample.com",
"Status": "INVITED",
"StatusTs": "2026-01-13 18:45:03 -05:00",
"AsgnGroups": [
{
"GroupId": 12897,
"GroupRef": null,
"Status": "INVITED",
"StatusTs": "2026-01-13 18:45:03 -05:00"
}
],
"AsgnPayers": [
{
"BusinessId": "b11b1df1-bb1a-4b5a-b593-7cceb6aaa369",
"PayerRef": "Snow12345",
"Status": "ASSIGNED",
"StatusTs": "2026-01-13 18:45:03 -05:00"
},
{
"BusinessId": "c5482a71-5904-4afd-bcd3-ca21a42a276a",
"PayerRef": "Snow Corp 123",
"Status": "ASSIGNED",
"StatusTs": "2026-01-13 19:06:42 -05:00"
}
],
"Errors": null
}