action circuitsandbox_flag_item { label: "Adds a flag to a message in a conversation" description: "Adds a flag to the given message in the given conversation.\nOauthScopes: WRITE_CONVERSATIONS, ORGANIZE_CONVERSATIONS" provider: circuitsandbox method: POST path: "/conversations/{convId}/messages/{itemId}/flag" encoding: form input: { type: "object" properties: { convId: { type: "string" } itemId: { type: "string" } } required: ["convId", "itemId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }