Skip to content

Entity Lists

Entity List-related functionality is accessed through client.entity_lists.

For example:

from pyodk.client import Client

client = Client()
data = client.entity_lists.list()

Conceptually, an EntityList's parent object is a Project. Each Project may have multiple EntityLists.

list(project_id=None)

Read Entity List details.

Parameters:

Name Type Description Default
project_id int | None

The id of the project the Entity List belongs to.

None

Returns:

Type Description
list[EntityList]

A list of the object representation of all Entity Lists' details.