Skip to content
Go to Micro

Unpin a record from the view

views.records.unpin(strobject_id, RecordUnpinParams**kwargs)
DELETE/v2/prism/{teamId}/{objectType}/views/{viewId}/records/{objectId}

Unpin a record from the view

ParametersExpand Collapse
team_id: Optional[str]
formatuuid
object_type: Literal["comment", "action", "deal", 5 more]
One of the following:
"comment"
"action"
"deal"
"engagement"
"document"
"event"
"identity"
"organization"
view_id: str
formatuuid
object_id: str
formatuuid

Unpin a record from the view

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
)
client.views.records.unpin(
    object_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
    object_type="comment",
    view_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
)
Returns Examples