Management APIs
cURL
curl --request GET \ --url https://api.basic.tech/team/{team_id}/member \ --header 'Authorization: Bearer <token>'
{ "data": [ { "account_id": "<string>", "roles": "<string>", "role_name": "<string>", "created_at": "2023-11-07T05:31:56Z" } ] }
Retrieves all members of a team
JWT Authorization Token header using the Bearer scheme
The ID of the team
List of team members
Show child attributes