Saltar al contenido principal

GET /teams/:uuid

Get a specific team given a uuid.

Required Parameters

ParameterTypeDescription
uuidstringThe uuid of the team

Example Request

curl -X GET "https://api.callbell.eu/v1/teams/ad42a09715814e6483b1c5debd6a2dbc" \
-H "Authorization: Bearer test_gshuPaZoeEG6ovbc8M79w0QyM" \
-H "Content-Type: application/json"

Response

ParameterTypeDescription
teamTeamThe object representing the team.

Example Response

response.json
{
"team": {
"uuid": "ad42a09715814e6483b1c5debd6a2dbc",
"name": "General",
"createdAt": "2020-11-13T21:08:53Z",
"default": true,
"members": 2
}
}