Status
Status
This endpoint can be used to retrieve the status of a team member.
GET TeamMember/Status Request Params
| Field | Type | Description |
|---|---|---|
| MemberId | Guid | A unique identifier of the team member |
| MemberRef | string | A Unique reference of the team member |
Response Body
| Field | Type | Description |
|---|---|---|
| MemberId | Guid | A unique identifier of the team member generated by Taxbandits |
| MemberRole | string | Assigned role for the team member |
| MemberRef | string | Returns unique reference for the team member |
| MemberNm | string | Returns the team member name |
| MemberEmail | string | Returns the email address of the team member |
| Status | string | Returns the invite status of the team member |
| StatusTs | string | Returns the date and time of the team member invite |
| AsgnGroup | object[] | Gets the assigned group details for the team member |
| GroupId | Guid | A Unique identifier of the group generated by Taxbandits |
| GroupRef | string | Unique reference of the group |
| Status | string | Returns the invite status of the team member |
| StatusTs | string | Returns the date and time of the team member invite |
| AsgnPayers | object[] | Gets the assigned payer details for the team member |
| BusinessId | Guid | A unique identifier of the Business |
| PayerRef | string | A Unique reference of the payer |
| Status | string | Returns the invite status of the team member |
| StatusTs | string | Returns the date and time of the team member invite |
| Errors | object[] | Shows the error information of state returns |
| Id | string | Returns the validation error ID |
| Name | string | Name of the validation error |
| Message | string | Description 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
}