List
Lists are curated collections of accounts, contacts, or opportunities in Lightfield. Each list contains entities of a single type.
List accounts in a list
list.list_accounts(strlist_id, ListListAccountsParams**kwargs) -> ListListAccountsResponse
GET/v1/lists/{listId}/accounts
List contacts in a list
list.list_contacts(strlist_id, ListListContactsParams**kwargs) -> ListListContactsResponse
GET/v1/lists/{listId}/contacts
List opportunities in a list
list.list_opportunities(strlist_id, ListListOpportunitiesParams**kwargs) -> ListListOpportunitiesResponse
GET/v1/lists/{listId}/opportunities
ModelsExpand Collapse
class ListListAccountsResponse: …
class ListListAccountsResponse: …
data: List[Data]Array of entity objects for the current page.
data: List[Data]
Array of entity objects for the current page.
fields: Dict[str, DataFields]Map of field names to their typed values. System fields are prefixed with $ (e.g. $name, $email); custom attributes use their bare slug.
fields: Dict[str, DataFields]
Map of field names to their typed values. System fields are prefixed with $ (e.g. $name, $email); custom attributes use their bare slug.
class ListListContactsResponse: …
class ListListContactsResponse: …
data: List[Data]Array of entity objects for the current page.
data: List[Data]
Array of entity objects for the current page.
fields: Dict[str, DataFields]Map of field names to their typed values. System fields are prefixed with $ (e.g. $name, $email); custom attributes use their bare slug.
fields: Dict[str, DataFields]
Map of field names to their typed values. System fields are prefixed with $ (e.g. $name, $email); custom attributes use their bare slug.
class ListListOpportunitiesResponse: …
class ListListOpportunitiesResponse: …
data: List[Data]Array of entity objects for the current page.
data: List[Data]
Array of entity objects for the current page.
fields: Dict[str, DataFields]Map of field names to their typed values. System fields are prefixed with $ (e.g. $name, $email); custom attributes use their bare slug.
fields: Dict[str, DataFields]
Map of field names to their typed values. System fields are prefixed with $ (e.g. $name, $email); custom attributes use their bare slug.
class ListListResponse: …
class ListListResponse: …
data: List[Data]Array of list objects for the current page.
data: List[Data]
Array of list objects for the current page.