Endpoint for interacting with monitoring networks.

A monitoring network groups timeseries. Timeseries may be viewed, added, or deleted via the subendpoint /api/v4/monitoringnetworks/{uuid}/timeseries/.

Query parameters:

name Text filter on the name field. Supports the following lookups: exact, icontains, and startswith.

access_modifier Filter on access_modifier, options are 'Public', 'Private', 'Common', or 'Hidden'.

created: Temporal filter on created. Supports various lookup types (exact, lt, lte, gt, gte; created__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

last_modified: Temporal filter on last_modified. Supports various lookup types (exact, lt, lte, gt, gte; last_modified__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

Examples

?name__icontains=lizard

?access_modifier=Private

?access_modifier=100

?created__gte=2017-01-01T00:00:00Z

?last_modified__lt=2018-01-01T00:00:00Z
GET /api/v4/monitoringnetworks/e896a10c-85a2-4b20-abe6-383727d3d6e1/?format=api
HTTP 200 OK
Allow: GET, PUT, PATCH, DELETE, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "url": "https://demo.lizard.net/api/v4/monitoringnetworks/e896a10c-85a2-4b20-abe6-383727d3d6e1/?format=api",
    "uuid": "e896a10c-85a2-4b20-abe6-383727d3d6e1",
    "name": "KNMI weerstations",
    "organisation": {
        "url": "https://demo.lizard.net/api/v4/organisations/18d98431-8077-451a-a7ae-041aac7ad148/?format=api",
        "uuid": "18d98431-8077-451a-a7ae-041aac7ad148",
        "name": "KNMI"
    },
    "access_modifier": "Public",
    "num_timeseries": 513,
    "description": "Weerstations die onderdeel zijn van het landelijke KNMI meetnet.",
    "created": "2020-10-22T15:03:26.365843Z",
    "last_modified": "2021-05-05T12:10:34.574904Z"
}