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
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
200

OK

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

Create Team Member

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
objectOptionalExample: {"name":"Example name","password":"strongPassword"}
Responses
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
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
200

OK

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

Last updated

Was this helpful?