Endpoint for Layer Collections (read-write).

The options GET, POST, PATCH, DELETE are implemented.

Required fields

slug Identifier for this wms layer.

organisation Organisation for this wms layer.

Query parameters:

organisation Filter on Organisations.

slug Filter on Slug.

ordering Show the results in a specific order. You can order them by slug, organisation__name, access_modifier or last_modified. Add a - in front to reverse the order.

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

?slug__icontains=Elevation

?organisation__name=DDSC

?organisation__uuid=61f5a464c35044c19bc7d4b42d7f58cb

?organisation__name__startswith=Nelen

?organisation__name__icontains=Schuur

?ordering=slug

?ordering=-organisation__name

?access_modifier=Private

?access_modifier=100

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

?last_modified__lt=2018-01-01T00:00:00Z
GET /api/v4/layercollections/zevenaar_klimaatatlas/?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/layercollections/zevenaar_klimaatatlas/?format=api",
    "slug": "zevenaar_klimaatatlas",
    "organisation": {
        "url": "https://demo.lizard.net/api/v4/organisations/4dfa8be0-8ce0-4348-b6bb-e0303e9279a9/?format=api",
        "uuid": "4dfa8be0-8ce0-4348-b6bb-e0303e9279a9",
        "name": "Zevenaar"
    },
    "access_modifier": "Public",
    "supplier": "chris.kerklaan",
    "created": "2021-02-22T07:39:26.807567Z",
    "last_modified": "2021-03-05T13:23:24.913711Z"
}