Skip to main content
GET
/
v1
/
teams
/
{id}
cURL
curl --request GET \
  --url https://api.novacal.io/v1/teams/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": 123,
    "name": "<string>",
    "username": "<string>",
    "about": "<string>",
    "logo": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer<int64>
required

ID of team

Response

200 - application/json

Team response

success
boolean
required

Indicates whether the request was successful

Example:

true

data
object
required