Skip to main content
GET
/
api
/
v3
/
teams
Get all teams
curl --request GET \
  --url https://cloud.volttime.com/api/v3/teams \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "uuid": "5d093e7f-5aae-3aa3-bece-f6e784dcbd67",
      "id": 7,
      "is_personal_team": false,
      "name": "Rogers Leuschke PhD",
      "type": "Other",
      "email": "imclaughlin@example.org",
      "created_at": "2025-09-25T07:17:35.000000Z",
      "updated_at": "2025-09-25T07:17:35.000000Z"
    },
    {
      "uuid": "1cdf7bf0-e381-3a72-a922-e680daa4dd16",
      "id": 8,
      "is_personal_team": false,
      "name": "Mr. Carey Smitham",
      "type": "Other",
      "email": "sleffler@example.org",
      "created_at": "2025-09-25T07:17:35.000000Z",
      "updated_at": "2025-09-25T07:17:35.000000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Response

200 - application/json
data
object[]
Example:
[
{
"uuid": "5d093e7f-5aae-3aa3-bece-f6e784dcbd67",
"id": 7,
"is_personal_team": false,
"name": "Rogers Leuschke PhD",
"type": "Other",
"email": "imclaughlin@example.org",
"created_at": "2025-09-25T07:17:35.000000Z",
"updated_at": "2025-09-25T07:17:35.000000Z"
},
{
"uuid": "1cdf7bf0-e381-3a72-a922-e680daa4dd16",
"id": 8,
"is_personal_team": false,
"name": "Mr. Carey Smitham",
"type": "Other",
"email": "sleffler@example.org",
"created_at": "2025-09-25T07:17:35.000000Z",
"updated_at": "2025-09-25T07:17:35.000000Z"
}
]
I