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=25
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=26",
    "previous": "https://demo.lizard.net/api/v4/organisations/?format=api&page=24",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/organisations/843ae546-a7e5-48dc-9e62-c792447badb8/?format=api",
            "uuid": "843ae546-a7e5-48dc-9e62-c792447badb8",
            "name": "Texel"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/d324e12a-970a-451e-a398-07afb80bab7f/?format=api",
            "uuid": "d324e12a-970a-451e-a398-07afb80bab7f",
            "name": "The Ocean Cleanup"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/0c76a5b2-b001-4073-bcea-a676f971d465/?format=api",
            "uuid": "0c76a5b2-b001-4073-bcea-a676f971d465",
            "name": "ThinkTron"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/88bb1bab-6d97-4ef1-9a42-31d7ce38fc2c/?format=api",
            "uuid": "88bb1bab-6d97-4ef1-9a42-31d7ce38fc2c",
            "name": "Tholen"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/2b2bcf53-d709-4dcb-93e7-92254eba5b22/?format=api",
            "uuid": "2b2bcf53-d709-4dcb-93e7-92254eba5b22",
            "name": "Townsville"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/05ff4518-a956-4bed-97a4-be5b90156dac/?format=api",
            "uuid": "05ff4518-a956-4bed-97a4-be5b90156dac",
            "name": "Tuinders DIG"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/4eaa3a64-2e6d-4383-8c82-78bd4c131df7/?format=api",
            "uuid": "4eaa3a64-2e6d-4383-8c82-78bd4c131df7",
            "name": "Twenterand"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/83bae82a-8bfd-4b4d-b196-971a75887e91/?format=api",
            "uuid": "83bae82a-8bfd-4b4d-b196-971a75887e91",
            "name": "Twents Waternet KA"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/fef9e6e0-0c30-4e8c-a8cd-4f9d8e65922a/?format=api",
            "uuid": "fef9e6e0-0c30-4e8c-a8cd-4f9d8e65922a",
            "name": "Twents Waternetwerk"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/f915021e-559b-4dd8-91b3-c3fd19ce2e38/?format=api",
            "uuid": "f915021e-559b-4dd8-91b3-c3fd19ce2e38",
            "name": "UNHCR"
        }
    ]
}