action circuitsandbox_get_pinned_conversations { label: "Returns pinned topics of a conversation" description: "Returns pinned topics of a conversation\nOauthScopes: READ_CONVERSATIONS" provider: circuitsandbox method: GET path: "/conversations/{convId}/pins" encoding: json input: { type: "object" properties: { convId: { type: "string" } } required: ["convId"] additionalProperties: false } output: { type: "array" items: { properties: { conversationId: { type: "string" description: "\"ID of the conversation\"" } conversationItemId: { type: "string" description: "\"ID of the pinned topic\"" } pinnedTime: { type: "number" format: "int64" description: "\"The exact moment the Pinning was happening\"" } } } } }