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": [
    {
      "deprecation": "site.id is deprecated. Use site.uuid instead.",
      "uuid": "bfc53181-d647-36b2-9080-f9c2b76006f4",
      "id": 60,
      "name": "Cronin, Dare and Hauck",
      "street": "Leo Pine",
      "postal_code": "21627",
      "house_number": 77365,
      "house_number_addition": "Apt. 066",
      "city": "Trompmouth",
      "country": "RS",
      "created_at": "2025-03-31T12:18:52.000000Z",
      "updated_at": "2025-03-31T12:18:52.000000Z"
    },
    {
      "deprecation": "site.id is deprecated. Use site.uuid instead.",
      "uuid": "59183559-65ff-3076-b8ca-d2d03d26a42a",
      "id": 61,
      "name": "Feeney, Leffler and Glover",
      "street": "Lucienne Curve",
      "postal_code": "38757-0170",
      "house_number": 282,
      "house_number_addition": "Suite 788",
      "city": "Verliebury",
      "country": "NI",
      "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.

Path Parameters

team_id
string
required

The ID of the team.

Response

200 - application/json
data
object[]
Example:
[
  {
    "deprecation": "site.id is deprecated. Use site.uuid instead.",
    "uuid": "bfc53181-d647-36b2-9080-f9c2b76006f4",
    "id": 60,
    "name": "Cronin, Dare and Hauck",
    "street": "Leo Pine",
    "postal_code": "21627",
    "house_number": 77365,
    "house_number_addition": "Apt. 066",
    "city": "Trompmouth",
    "country": "RS",
    "created_at": "2025-03-31T12:18:52.000000Z",
    "updated_at": "2025-03-31T12:18:52.000000Z"
  },
  {
    "deprecation": "site.id is deprecated. Use site.uuid instead.",
    "uuid": "59183559-65ff-3076-b8ca-d2d03d26a42a",
    "id": 61,
    "name": "Feeney, Leffler and Glover",
    "street": "Lucienne Curve",
    "postal_code": "38757-0170",
    "house_number": 282,
    "house_number_addition": "Suite 788",
    "city": "Verliebury",
    "country": "NI",
    "created_at": "2025-03-31T12:18:52.000000Z",
    "updated_at": "2025-03-31T12:18:52.000000Z"
  }
]

Was this page helpful?