Returns a paginated list of lists. Use offset and limit to paginate through results. See List endpoints for more information about pagination.
Required scope: lists:read
Rate limit category: Search
List lists
from lightfield import Lightfield
client = Lightfield(
api_key="My API Key",
)
list_list_response = client.list.list()
print(list_list_response.data){
"data": [
{
"id": "id",
"createdAt": "createdAt",
"fields": {
"foo": {
"value": "string",
"valueType": "ADDRESS"
}
},
"httpLink": "httpLink"
}
],
"object": "object",
"totalCount": 0
}Returns Examples
{
"data": [
{
"id": "id",
"createdAt": "createdAt",
"fields": {
"foo": {
"value": "string",
"valueType": "ADDRESS"
}
},
"httpLink": "httpLink"
}
],
"object": "object",
"totalCount": 0
}