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=24
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=25",
    "previous": "https://demo.lizard.net/api/v4/organisations/?format=api&page=23",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/organisations/754fa4ef-26ca-4540-9291-2efbcad4f497/?format=api",
            "uuid": "754fa4ef-26ca-4540-9291-2efbcad4f497",
            "name": "Slamdam Intelligence Service"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/9076be5d-6541-434d-b931-f1073b4e6733/?format=api",
            "uuid": "9076be5d-6541-434d-b931-f1073b4e6733",
            "name": "Stede Broec"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/04a8419e-663d-4200-8f03-850536f287d2/?format=api",
            "uuid": "04a8419e-663d-4200-8f03-850536f287d2",
            "name": "Stein"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/c3047df9-4e16-467f-a208-bec099b4625c/?format=api",
            "uuid": "c3047df9-4e16-467f-a208-bec099b4625c",
            "name": "SunshineCoast"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/2237d7b3-1c23-43b6-8aab-69ba98af5556/?format=api",
            "uuid": "2237d7b3-1c23-43b6-8aab-69ba98af5556",
            "name": "TEMA"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/130259ef-e6f6-4742-a085-38601258e6ad/?format=api",
            "uuid": "130259ef-e6f6-4742-a085-38601258e6ad",
            "name": "TGV"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/c71538d5-0c34-463c-ad3f-5f048cc000b1/?format=api",
            "uuid": "c71538d5-0c34-463c-ad3f-5f048cc000b1",
            "name": "TNO"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/e718ca4b-27cc-4368-8ce2-d172bbab2a76/?format=api",
            "uuid": "e718ca4b-27cc-4368-8ce2-d172bbab2a76",
            "name": "TU Delft (3Di)"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/acb3d887-29ca-47e9-9404-3220ce3a94aa/?format=api",
            "uuid": "acb3d887-29ca-47e9-9404-3220ce3a94aa",
            "name": "Taiwan_cloud"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/c560c295-ee58-48be-9369-2a0f7c2eee72/?format=api",
            "uuid": "c560c295-ee58-48be-9369-2a0f7c2eee72",
            "name": "Taoyuan"
        }
    ]
}