Skip to content
Go to Micro

Lists

Create a list (app/CRM)
prism.lists.create(ListCreateParams**kwargs) -> List
POST/v2/prism/{teamId}/lists
List apps/CRMs in a workspace
prism.lists.list(ListListParams**kwargs) -> ListListResponse
GET/v2/prism/{teamId}/lists
Get a list by id
prism.lists.get(strlist_id, ListGetParams**kwargs) -> List
GET/v2/prism/{teamId}/lists/{listId}
ModelsExpand Collapse
class List:
id: str
formatuuid
name: str
minLength1
object_type: Literal["organization", "identity", "action", 2 more]

Prism object type this list holds.

One of the following:
"organization"
"identity"
"action"
"document"
"deal"
team_id: str
formatuuid
created_at: Optional[datetime]
formatdate-time
description: Optional[str]
icon: Optional[str]

Emoji or icon key for the list.

type: Optional[str]

Internal template type (e.g. dealFlow, hiring). Derived from template_id on create.

views: Optional[List[View]]
id: str
formatuuid
name: Optional[str]
class ListCreate:
template_id: Literal["sales_deals", "recruiting", "partnerships", 11 more]

Template to seed the list from. type is derived server-side from this template.

One of the following:
"sales_deals"
"recruiting"
"partnerships"
"fundraising"
"knowledge_base"
"issue_tracker"
"content_calendar"
"job_applications"
"project_tracker"
"feedback"
"portco_tracker"
"deal_flow"
"lp_fundraising"
"custom"
icon: Optional[str]

Emoji or icon override.

minLength1
maxLength32
name: Optional[str]
minLength1
maxLength255
object_type: Optional[Literal["organization", "identity", "action", 2 more]]

Required only when template_id is custom.

One of the following:
"organization"
"identity"
"action"
"document"
"deal"
class ListListResponse:
data: List[List]
id: str
formatuuid
name: str
minLength1
object_type: Literal["organization", "identity", "action", 2 more]

Prism object type this list holds.

One of the following:
"organization"
"identity"
"action"
"document"
"deal"
team_id: str
formatuuid
created_at: Optional[datetime]
formatdate-time
description: Optional[str]
icon: Optional[str]

Emoji or icon key for the list.

type: Optional[str]

Internal template type (e.g. dealFlow, hiring). Derived from template_id on create.

views: Optional[List[View]]
id: str
formatuuid
name: Optional[str]