GET
/
api
/
v2
/
teams
curl --request GET \
  --url https://cloud.volttime.com/api/v2/teams \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 204,
      "is_personal_team": false,
      "name": "Morgan Hirthe",
      "type": "Other",
      "email": "dare.emelie@example.com",
      "created_at": "2025-03-12T13:49:24.000000Z",
      "updated_at": "2025-03-12T13:49:24.000000Z"
    },
    {
      "id": 205,
      "is_personal_team": false,
      "name": "Prof. Mina Bauch",
      "type": "Other",
      "email": "okeefe.isidro@example.org",
      "created_at": "2025-03-12T13:49:24.000000Z",
      "updated_at": "2025-03-12T13:49:24.000000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Response

200 - application/json
data
object[]
Example:
[
  {
    "id": 204,
    "is_personal_team": false,
    "name": "Morgan Hirthe",
    "type": "Other",
    "email": "dare.emelie@example.com",
    "created_at": "2025-03-12T13:49:24.000000Z",
    "updated_at": "2025-03-12T13:49:24.000000Z"
  },
  {
    "id": 205,
    "is_personal_team": false,
    "name": "Prof. Mina Bauch",
    "type": "Other",
    "email": "okeefe.isidro@example.org",
    "created_at": "2025-03-12T13:49:24.000000Z",
    "updated_at": "2025-03-12T13:49:24.000000Z"
  }
]

Was this page helpful?