get info on team + related keys
Parameters:
curl --location 'http://localhost:4000/team/info?team_id=your_team_id_here' --header 'Authorization: Bearer your_api_key_here'
Successful Response
const response = await fetch('/team/info', { method: 'GET', headers: {}, }); const data = await response.json();
{ "detail": [ { "loc": [ "text" ], "msg": "text", "type": "text" } ] }