action circuitsandbox_un_flag_item { label: "Removes the flag from a message" description: "Removes the flag from a given message that is posted to the given conversation.\nOauthScopes: WRITE_CONVERSATIONS, ORGANIZE_CONVERSATIONS" provider: circuitsandbox method: DELETE path: "/conversations/{convId}/messages/{itemId}/flag" encoding: json input: { type: "object" properties: { convId: { type: "string" } itemId: { type: "string" } } required: ["convId", "itemId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }