List projects
Parameters
name: Optional[str]
ordering: Optional[str]
Which field to use when ordering the results.
page: Optional[int]
A page number within the paginated result set.
search: Optional[str]
A search term.
slug: Optional[str]
Returns
List projects
from overmind_lab import OvermindLab
client = OvermindLab()
projects = client.projects.list()
print(projects.count){
"count": 123,
"results": [
{
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"created_at": "2019-12-27T18:11:19.117Z",
"name": "name",
"slug": "slug",
"updated_at": "2019-12-27T18:11:19.117Z",
"description": "description",
"is_active": true,
"settings": {}
}
],
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2"
}Returns Examples
{
"count": 123,
"results": [
{
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"created_at": "2019-12-27T18:11:19.117Z",
"name": "name",
"slug": "slug",
"updated_at": "2019-12-27T18:11:19.117Z",
"description": "description",
"is_active": true,
"settings": {}
}
],
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2"
}