action circuitsandbox_unlike_item { label: "Removes a \"like\" from a message" description: "Removes a \"like\" from the given message in the given conversation\nOauthScopes: WRITE_CONVERSATIONS, UPDATE_CONVERSATION_CONTENT" provider: circuitsandbox method: DELETE path: "/conversations/{convId}/messages/{itemId}/like" encoding: json input: { type: "object" properties: { convId: { type: "string" } itemId: { type: "string" } } required: ["convId", "itemId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }