Project List
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
{
"count": 0,
"next": null,
"previous": null,
"results": []
}