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=21
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=22",
    "previous": "https://demo.lizard.net/api/v4/organisations/?format=api&page=20",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/organisations/6c391e46-265c-4c23-b13a-0ded505160ca/?format=api",
            "uuid": "6c391e46-265c-4c23-b13a-0ded505160ca",
            "name": "Purmerend"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/20894310-2f2e-4029-ad12-24ea2cf5d381/?format=api",
            "uuid": "20894310-2f2e-4029-ad12-24ea2cf5d381",
            "name": "Purmerend KA"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/568a4d88-c1b3-4566-8759-dd9b305f619d/?format=api",
            "uuid": "568a4d88-c1b3-4566-8759-dd9b305f619d",
            "name": "RHDHV unlimited"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/93829cf4-8353-478e-afb7-99d7f749c83c/?format=api",
            "uuid": "93829cf4-8353-478e-afb7-99d7f749c83c",
            "name": "ROR Delfland"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/6185c995-be13-49bf-8646-ba656f173d66/?format=api",
            "uuid": "6185c995-be13-49bf-8646-ba656f173d66",
            "name": "RWS"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/c3d028b2-8d5d-46d4-9a6a-ccf68642f452/?format=api",
            "uuid": "c3d028b2-8d5d-46d4-9a6a-ccf68642f452",
            "name": "Rana - layers"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/c24a55c0-f515-430f-a28d-3080742466bc/?format=api",
            "uuid": "c24a55c0-f515-430f-a28d-3080742466bc",
            "name": "Rana - production"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/775c92ea-07dd-4c23-a9f8-c8a5bb844558/?format=api",
            "uuid": "775c92ea-07dd-4c23-a9f8-c8a5bb844558",
            "name": "Rana - staging"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/b3a0d3c6-ba58-4f3b-91ee-84b1d2769153/?format=api",
            "uuid": "b3a0d3c6-ba58-4f3b-91ee-84b1d2769153",
            "name": "Rana - test"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/2b07f8ee-a8ba-46c3-ab4b-4913c6440e85/?format=api",
            "uuid": "2b07f8ee-a8ba-46c3-ab4b-4913c6440e85",
            "name": "Readar"
        }
    ]
}