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=13
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=14",
    "previous": "https://demo.lizard.net/api/v4/organisations/?format=api&page=12",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/organisations/0b60adaa-b73a-4227-a0a1-76a53a11eae2/?format=api",
            "uuid": "0b60adaa-b73a-4227-a0a1-76a53a11eae2",
            "name": "IPE Global Ltd"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/f1f870b4-5dc9-4741-b0cb-beaae49b9475/?format=api",
            "uuid": "f1f870b4-5dc9-4741-b0cb-beaae49b9475",
            "name": "ITC"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/200f41ca-4a79-4485-abf9-c01a5d6a3988/?format=api",
            "uuid": "200f41ca-4a79-4485-abf9-c01a5d6a3988",
            "name": "Ilan"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/658efe9f-ca3c-482d-960d-47548b085e61/?format=api",
            "uuid": "658efe9f-ca3c-482d-960d-47548b085e61",
            "name": "Information and Accounting Center"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/61d569a2-4b8b-45f8-a54a-dce091604eb3/?format=api",
            "uuid": "61d569a2-4b8b-45f8-a54a-dce091604eb3",
            "name": "Isiolo"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/fcdacdb0-ba99-4684-97f3-2c1fe3349cbf/?format=api",
            "uuid": "fcdacdb0-ba99-4684-97f3-2c1fe3349cbf",
            "name": "KCG"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/18d98431-8077-451a-a7ae-041aac7ad148/?format=api",
            "uuid": "18d98431-8077-451a-a7ae-041aac7ad148",
            "name": "KNMI"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/81a20477-8791-4d35-9678-647f8945736d/?format=api",
            "uuid": "81a20477-8791-4d35-9678-647f8945736d",
            "name": "Kaag en Braassem"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/f3f5f20e-8ce1-4ef0-83ff-88053a79fe20/?format=api",
            "uuid": "f3f5f20e-8ce1-4ef0-83ff-88053a79fe20",
            "name": "Kenya Meteorological Department"
        },
        {
            "url": "https://demo.lizard.net/api/v4/organisations/a919b534-6011-4582-99f6-ec7c6d2cdfc5/?format=api",
            "uuid": "a919b534-6011-4582-99f6-ec7c6d2cdfc5",
            "name": "Klimaatmonitor"
        }
    ]
}