GET
/
api
/
v2
/
teams
curl --request GET \
  --url https://cloud.volttime.com/api/v2/teams \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "deprecation": "team.id is deprecated. Use team.uuid instead.",
      "uuid": "bfc53181-d647-36b2-9080-f9c2b76006f4",
      "id": 36,
      "is_personal_team": false,
      "name": "Miss Pearl Hauck",
      "type": "Other",
      "email": "leo34@example.net",
      "created_at": "2025-03-31T12:18:52.000000Z",
      "updated_at": "2025-03-31T12:18:52.000000Z"
    },
    {
      "deprecation": "team.id is deprecated. Use team.uuid instead.",
      "uuid": "665a39c0-48af-31f1-a546-aa4f41372488",
      "id": 37,
      "is_personal_team": false,
      "name": "Oswald Koch",
      "type": "Other",
      "email": "bailee15@example.org",
      "created_at": "2025-03-31T12:18:52.000000Z",
      "updated_at": "2025-03-31T12:18:52.000000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Response

200 - application/json
data
object[]
Example:
[
  {
    "deprecation": "team.id is deprecated. Use team.uuid instead.",
    "uuid": "bfc53181-d647-36b2-9080-f9c2b76006f4",
    "id": 36,
    "is_personal_team": false,
    "name": "Miss Pearl Hauck",
    "type": "Other",
    "email": "leo34@example.net",
    "created_at": "2025-03-31T12:18:52.000000Z",
    "updated_at": "2025-03-31T12:18:52.000000Z"
  },
  {
    "deprecation": "team.id is deprecated. Use team.uuid instead.",
    "uuid": "665a39c0-48af-31f1-a546-aa4f41372488",
    "id": 37,
    "is_personal_team": false,
    "name": "Oswald Koch",
    "type": "Other",
    "email": "bailee15@example.org",
    "created_at": "2025-03-31T12:18:52.000000Z",
    "updated_at": "2025-03-31T12:18:52.000000Z"
  }
]

Was this page helpful?