Retrieve a list
from lightfield import Lightfield
client = Lightfield(
api_key="My API Key",
)
list_retrieve_response = client.list.retrieve(
"id",
)
print(list_retrieve_response.id){
"id": "id",
"createdAt": "createdAt",
"fields": {
"foo": {
"value": "string",
"valueType": "ADDRESS"
}
},
"httpLink": "httpLink"
}Returns Examples
{
"id": "id",
"createdAt": "createdAt",
"fields": {
"foo": {
"value": "string",
"valueType": "ADDRESS"
}
},
"httpLink": "httpLink"
}