ListDevicesResponse

  • This API response provides a list of devices and a token for pagination.

  • Each device is represented as a Device object, which is further defined in its own documentation.

  • The nextPageToken helps retrieve further devices in the list if available; an empty or missing token signifies the end of the list.

Response for devices.list.

JSON representation
{
  "devices": [
    {
      object (Device)
    }
  ],
  "nextPageToken": string
}
Fields
devices[]

object (Device)

The devices that match the request.

nextPageToken

string

A pagination token returned from a previous call to devices.list that indicates from where listing should continue. If the field is missing or empty, it means there is no more devices.