Endpoint for Projects, which are used to group Scenarios.

Query parameters

name Text filter on the name field. Supports the following lookups: exact, startswith, icontains, and isnull.

code Text filter on the code field. Supports the following lookups: exact, startswith, and isnull.

organisation Filter on organisation.

access_modifier Filter on access_modifier, options are 'Public', 'Private', 'Common', or 'Hidden'.

created: Temporal filter on created. Supports various lookup types (exact, lt, lte, gt, gte; created__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

last_modified: Temporal filter on last_modified. Supports various lookup types (exact, lt, lte, gt, gte; last_modified__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

Examples:

?name=What

?name__icontains=wha

?name__startswith=wha

?code=code_1234

?code__icontains=CODE_1

?name__startswith=Code

?organisation__name__startswith=Nelen

?organisation__name=DDSC

?organisation__uuid=61f5a464c35044c19bc7d4b42d7f58cb

?organisation__name__startswith=Nelen

?organisation__name__icontains=Schuur

?access_modifier=Private

?access_modifier=100

?created__gte=2017-01-01T00:00:00Z

?last_modified__lt=2018-01-01T00:00:00Z
GET /api/v4/projects/?format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 3,
    "next": null,
    "previous": null,
    "results": [
        {
            "uuid": "15589b71-3755-4a0a-87f6-1348f8b9c3ba",
            "url": "https://demo.lizard.net/api/v4/projects/15589b71-3755-4a0a-87f6-1348f8b9c3ba/?format=api",
            "name": "Storymaps overstromingen",
            "code": "SMOVS",
            "description": "",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/474afd21-2f2e-4b4f-8261-5142f1d67acb/?format=api",
                "uuid": "474afd21-2f2e-4b4f-8261-5142f1d67acb",
                "name": "Hoogheemraadschap Hollands Noorderkwartier"
            },
            "supplier": "w.vanesse",
            "access_modifier": "Public",
            "scheduled_for_deletion": false,
            "last_modified": "2023-01-13T09:13:28.406289Z",
            "created": "2023-01-13T09:13:28.406299Z"
        },
        {
            "uuid": "1d2710fc-793d-47d3-a5a5-08fcf709fc6c",
            "url": "https://demo.lizard.net/api/v4/projects/1d2710fc-793d-47d3-a5a5-08fcf709fc6c/?format=api",
            "name": "Storymaps Overstromingen BWN",
            "code": "SMOVS_BWN",
            "description": "",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/48dac75b-ef8a-42eb-bb52-e8f89bbdb9f2/?format=api",
                "uuid": "48dac75b-ef8a-42eb-bb52-e8f89bbdb9f2",
                "name": "BWN HHNK"
            },
            "supplier": null,
            "access_modifier": "Public",
            "scheduled_for_deletion": false,
            "last_modified": "2023-01-13T09:38:29.325494Z",
            "created": "2023-01-13T09:38:29.325505Z"
        },
        {
            "uuid": "2c6590f8-1838-49a6-9ff7-16da983e95b4",
            "url": "https://demo.lizard.net/api/v4/projects/2c6590f8-1838-49a6-9ff7-16da983e95b4/?format=api",
            "name": "Demo project",
            "code": "demo_project",
            "description": "This is a demo project",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/bf5b7a0b-c350-4489-a4f0-191e6d9e87f7/?format=api",
                "uuid": "bf5b7a0b-c350-4489-a4f0-191e6d9e87f7",
                "name": "3Di test"
            },
            "supplier": "jonas.vanschrojenste",
            "access_modifier": "Public",
            "scheduled_for_deletion": false,
            "last_modified": "2022-05-17T08:16:50.423712Z",
            "created": "2022-05-17T08:16:50.423739Z"
        }
    ]
}