List Device Variables

circle-info

Show all device variables the requesting manager has access permissions to.

URL: /api/v1/device-variables/ Method: GET

Query Parameters

Pagination

circle-info

Default pagination is 20 results per page.

  • limit — Number of results to return per page. Example: limit=20

  • offset — The initial index from which to return the results. Example: offset=21

Filtering

chevron-rightPossible filtershashtag
  • device

Success Response

Code: 200 OK

Response (application/json)
{
    "count": 3,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 2018,
            "created_at": "2021-02-01T07:24:08Z",
            "variable": "v7",
            "value": "ggg",
            "device": 1112
        },
        ...
    ]
}

Last updated

Was this helpful?