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=8
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=9",
    "previous": "https://demo.lizard.net/api/v4/organisations/?format=api&page=7",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/organisations/f061d542-b91c-40b8-a76d-8e9fc919ffb8/?format=api",
            "uuid": "f061d542-b91c-40b8-a76d-8e9fc919ffb8",
            "name": "FAME"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/8b17e48b-beac-4bce-89f1-f3f3155b6312/?format=api",
            "uuid": "8b17e48b-beac-4bce-89f1-f3f3155b6312",
            "name": "Fijian Ministry of Waterways & Environment"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/24a315b7-5694-4587-9a77-a9095a7d3309/?format=api",
            "uuid": "24a315b7-5694-4587-9a77-a9095a7d3309",
            "name": "Floodsmart"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/d808c51f-4f79-42b2-b1b1-50381a256e3c/?format=api",
            "uuid": "d808c51f-4f79-42b2-b1b1-50381a256e3c",
            "name": "Fluvius KA"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/6ad8ca58-9f4d-460e-9bb4-3b438700b1d7/?format=api",
            "uuid": "6ad8ca58-9f4d-460e-9bb4-3b438700b1d7",
            "name": "FondUS"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/f3a6dfdd-ec86-43a3-8ffe-e84f4d53f258/?format=api",
            "uuid": "f3a6dfdd-ec86-43a3-8ffe-e84f4d53f258",
            "name": "G4AW Salad"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/476de09d-c93b-42ca-a28e-355c31a45a7a/?format=api",
            "uuid": "476de09d-c93b-42ca-a28e-355c31a45a7a",
            "name": "G4AW SmartSeeds"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/790bd838-2410-46dd-93db-1576a1727fde/?format=api",
            "uuid": "790bd838-2410-46dd-93db-1576a1727fde",
            "name": "G4AW SpiceUp"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/337e52af-a424-4036-8048-59e82fe6442c/?format=api",
            "uuid": "337e52af-a424-4036-8048-59e82fe6442c",
            "name": "G4AW Vietnam"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/dc53c633-3c23-42e3-9635-5b630d0fcfff/?format=api",
            "uuid": "dc53c633-3c23-42e3-9635-5b630d0fcfff",
            "name": "GIZ"
        }
    ]
}