Info

Team Info

get info on team + related keys

Parameters:

  • team_id: str - Required. The unique identifier of the team to get info on.
curl --location 'http://localhost:4000/team/info?team_id=your_team_id_here'     --header 'Authorization: Bearer your_api_key_here'
GET/team/info
Authorization
Query parameters
Response

Successful Response

Body
any
Request
const response = await fetch('/team/info', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "detail": [
    {
      "loc": [
        "text"
      ],
      "msg": "text",
      "type": "text"
    }
  ]
}