Get metadata properties by object type
prism.properties.list(Literal["deal", "identity", "ai_chat_thread", 6 more]object_type, PropertyListParams**kwargs) -> PropertyListResponse
GET/v2/prism/{teamId}/{objectType}/properties
Get metadata properties by object type
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
)
properties = client.prism.properties.list(
object_type="deal",
)
print(properties){
"foo": {}
}Returns Examples
{
"foo": {}
}