## Bulk reorder pinned records **patch** `/v2/prism/{teamId}/{viewObjectType}/views/{viewId}/records` Bulk reorder pinned records ### Path Parameters - `teamId: optional string` - `viewObjectType: "action" or "deal" or "document" or 3 more` - `"action"` - `"deal"` - `"document"` - `"event"` - `"identity"` - `"organization"` - `viewId: string` ### Header Parameters - `"Idempotency-Key": optional string` ### Body Parameters - `object_ids: array of string` ### Example ```http curl https://developers.micro.so/v2/prism/$TEAM_ID/$VIEW_OBJECT_TYPE/views/$VIEW_ID/records \ -X PATCH \ -H 'Content-Type: application/json' \ -H "x-api-key: $MICRO_API_KEY" \ -d '{ "object_ids": [ "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e" ] }' ```