Endpoint for interacting with organisations.

Query parameters

name Text filter on the name field. Filter methods like startswith, endswith and contains are supported. For case-insensitive filtering, use istartswith, iendswith and icontains.

uuid UUIDs must be separated by commas and must be specified in their canonical textual representation (in their 8-4-4-4-12 form, that is). Filtering on this field is always case insensitive. UUID fractions are supported too.

Subendpoints

/api/v4/organisations/{uuid}/contract returns contract information of the organisation. Only accessible by members of the organisation.

/api/v4/organisations/{uuid}/usage/ returns the count and total size of time series, rasters and scenarios for a specific organisation. Only accessible by members of the organisation.

/api/v4/organisations/{uuid}/users/ returns all users in the specified organisation and their roles. Only accessible by members of the organisation. User roles may be patched by managers.

Examples

/api/v4/organisations/?name__icontains=schuur

/api/v4/organisations/?uuid=61f5a464-c350-44c1-9bc7-d4b42d7f58cb

/api/v4/organisations/?uuid=C350-44C1-9BC7,9C6C-40A9-A5FC

/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/contract/

/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/usage/

/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/users/
GET /api/v4/organisations/?format=api&page=18
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 305,
    "next": "https://demo.lizard.net/api/v4/organisations/?format=api&page=19",
    "previous": "https://demo.lizard.net/api/v4/organisations/?format=api&page=17",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/organisations/a1993f6e-1356-4e96-87ae-03a3604463f9/?format=api",
            "uuid": "a1993f6e-1356-4e96-87ae-03a3604463f9",
            "name": "N&S Demo"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/2f03b2ea-8e95-4f5a-bd92-d1388958d5ff/?format=api",
            "uuid": "2f03b2ea-8e95-4f5a-bd92-d1388958d5ff",
            "name": "NASA"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/a46b960f-bb1a-40fd-acf9-f9c96a2e6472/?format=api",
            "uuid": "a46b960f-bb1a-40fd-acf9-f9c96a2e6472",
            "name": "NEO BV"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/29c9574c-06c4-43da-89ba-47425d5e0a78/?format=api",
            "uuid": "29c9574c-06c4-43da-89ba-47425d5e0a78",
            "name": "NEVASCO"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/6f666b72-c109-42c4-93af-e81a322f811c/?format=api",
            "uuid": "6f666b72-c109-42c4-93af-e81a322f811c",
            "name": "NOAA"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/85c96106-7c1f-410f-9bcd-44692bb71996/?format=api",
            "uuid": "85c96106-7c1f-410f-9bcd-44692bb71996",
            "name": "National Center for High Performance Computing"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/60094b68-7fd8-420b-88e0-8d5b6b4c81ac/?format=api",
            "uuid": "60094b68-7fd8-420b-88e0-8d5b6b4c81ac",
            "name": "Natural Eco Capital"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/000d0235-fede-406c-93cd-590e7a100b64/?format=api",
            "uuid": "000d0235-fede-406c-93cd-590e7a100b64",
            "name": "Nederweert"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/?format=api",
            "uuid": "61f5a464-c350-44c1-9bc7-d4b42d7f58cb",
            "name": "Nelen & Schuurmans Consultancy"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/4178c718-45f1-4a3b-abc1-b042e7505193/?format=api",
            "uuid": "4178c718-45f1-4a3b-abc1-b042e7505193",
            "name": "Nelen & Schuurmans Reeksberekening"
        }
    ]
}