## Get metadata properties `prism.properties.list_all(PropertyListAllParams**kwargs) -> PropertyListAllResponse` **get** `/v2/prism/{teamId}/properties` Get metadata properties ### Parameters - `team_id: Optional[str]` - `autofill: Optional[bool]` - `list_id: Optional[str]` Scope properties to a specific list/app. - `term: Optional[str]` ### Returns - `Dict[str, object]` Property definitions keyed by object type, then by property definition id (UUID). When the request scopes to a single object type, only that key is present. ### Example ```python 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) ``` #### Response ```json { "foo": {} } ```