Get metadata properties
prism.properties.list_all(PropertyListAllParams**kwargs) -> PropertyListAllResponse
GET/v2/prism/{teamId}/properties
Lists property definitions across every object type the engine knows about, including pipeline-owned types that are not queryable or CRUD-capable (message, thread, linkedin_thread, and others). Only the ObjectType enum (12 types) can be queried, created, updated, or listed. Contacts point at message via last_email; that relationship cannot be followed with /query.
Parameters
Get metadata properties
import os
from micro_so import Micro
client = Micro(
api_key=os.environ.get("MICRO_API_KEY"), # This is the default and can be omitted
)
response = client.prism.properties.list_all()
print(response){
"foo": {}
}Returns Examples
{
"foo": {}
}