Members

This endpoint allows you to perform actions on a specific Member of your Team.

Fetch All Team Members

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
chevron-right
200

OK

application/json
Responseobject
get
/api/v1/members
200

OK

Fetch Team Member by its ID

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
teamMemberIdstringRequired

ID of team member

Responses
chevron-right
200

OK

application/json
Responseobject
get
/api/v1/member/{teamMemberId}

Disconnect Team Member by its ID

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
teamMemberIdstringRequired

ID of team member

Responses
chevron-right
200

OK

application/json
Responseobject
post
/api/v1/member/{teamMemberId}/disconnect
circle-info

💡 Implementing Step-Up Authentication

You can use the Disconnect endpoint to enforce Step-Up Authentication. By terminating an active session, you trigger a mandatory re-authentication challenge upon the next reconnection attempt.

Note: This requires specific security policies to be enabled in your Control Panel. For setup instructions and common use cases, please refer to our MFA Configuration Guide.

Create Team Member

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
objectOptionalExample: {"name":"Example name","password":"strongPassword"}
Responses
chevron-right
200

OK

application/json
Responseobject
post
/api/v1/member
200

OK

Update Team Member by its ID

put
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
teamMemberIdstringRequired

ID of team member

Body
objectOptionalExample: {"name":"name","password":"strongPassword"}
Responses
chevron-right
200

OK

application/json
Responseobject
put
/api/v1/member/{teamMemberId}

Delete Team Member by its ID

delete
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
teamMemberIdstringRequired

ID of team member

Responses
chevron-right
200

OK

application/json
Responseobject
delete
/api/v1/member/{teamMemberId}

Last updated

Was this helpful?