GET
/
v1
/
ticketing
/
teams
/
{team_name}
curl --request GET \
  --url http://localhost:8000/api/v1/ticketing/teams/{team_name}
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "members": [
      {
        "id": "<string>",
        "username": "<string>"
      }
    ]
  }
}

Path Parameters

team_name
string
required

Query Parameters

raw
boolean

Include raw response. When you want more data from the source

Response

200 - application/json
data
object
required