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=20
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=21",
    "previous": "https://demo.lizard.net/api/v4/organisations/?format=api&page=19",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/organisations/d9471c89-43f2-45b3-8ce7-14844569659c/?format=api",
            "uuid": "d9471c89-43f2-45b3-8ce7-14844569659c",
            "name": "PDOK"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/edad8766-d9bd-41be-b276-d19cbda1fad5/?format=api",
            "uuid": "edad8766-d9bd-41be-b276-d19cbda1fad5",
            "name": "Paramaribo"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/96b504d6-6811-43d5-b01c-39e41cb33271/?format=api",
            "uuid": "96b504d6-6811-43d5-b01c-39e41cb33271",
            "name": "Parkstad"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/7787453f-e6e1-44dd-8409-dec7e7a6eb57/?format=api",
            "uuid": "7787453f-e6e1-44dd-8409-dec7e7a6eb57",
            "name": "Parkstad KA"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/bf8a9cdd-63d2-4d42-97e2-0757ff2c63a1/?format=api",
            "uuid": "bf8a9cdd-63d2-4d42-97e2-0757ff2c63a1",
            "name": "Parramatta_Archive"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/8268d7ff-a9c9-4314-852c-c04fd64c7132/?format=api",
            "uuid": "8268d7ff-a9c9-4314-852c-c04fd64c7132",
            "name": "Peel en Maas"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/a32e9bdc-dabd-4190-a391-bed63e00659b/?format=api",
            "uuid": "a32e9bdc-dabd-4190-a391-bed63e00659b",
            "name": "Pipelife"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/d50331f7-d5a3-4d22-933f-03a8028c0431/?format=api",
            "uuid": "d50331f7-d5a3-4d22-933f-03a8028c0431",
            "name": "PortMacquarie"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/e5791d82-7489-4731-be4f-acc2ab0b3b8f/?format=api",
            "uuid": "e5791d82-7489-4731-be4f-acc2ab0b3b8f",
            "name": "Portolan"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/c152eb26-47d7-4444-956c-15da0dcf5464/?format=api",
            "uuid": "c152eb26-47d7-4444-956c-15da0dcf5464",
            "name": "Provincie Noord-Brabant"
        }
    ]
}