GET
/
api
/
v2
/
teams
/
{team_id}
/
sites
curl --request GET \
  --url https://cloud.volttime.com/api/v2/teams/{team_id}/sites \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 233,
      "name": "Morgan Hirthe",
      "street": "Haven Square",
      "postal_code": "19279",
      "house_number": 544,
      "house_number_addition": "Apt. 365",
      "city": "Careymouth",
      "country": "HN",
      "created_at": "2025-03-12T13:49:24.000000Z",
      "updated_at": "2025-03-12T13:49:24.000000Z"
    },
    {
      "id": 234,
      "name": "Henri Mitchell",
      "street": "Leuschke Throughway",
      "postal_code": "06227",
      "house_number": 47809,
      "house_number_addition": "Suite 339",
      "city": "Daphneview",
      "country": "GH",
      "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.

Path Parameters

team_id
integer
required

The ID of the team.

Response

200 - application/json
data
object[]
Example:
[
  {
    "id": 233,
    "name": "Morgan Hirthe",
    "street": "Haven Square",
    "postal_code": "19279",
    "house_number": 544,
    "house_number_addition": "Apt. 365",
    "city": "Careymouth",
    "country": "HN",
    "created_at": "2025-03-12T13:49:24.000000Z",
    "updated_at": "2025-03-12T13:49:24.000000Z"
  },
  {
    "id": 234,
    "name": "Henri Mitchell",
    "street": "Leuschke Throughway",
    "postal_code": "06227",
    "house_number": 47809,
    "house_number_addition": "Suite 339",
    "city": "Daphneview",
    "country": "GH",
    "created_at": "2025-03-12T13:49:24.000000Z",
    "updated_at": "2025-03-12T13:49:24.000000Z"
  }
]

Was this page helpful?