action circuitsandbox_like_item { label: "Adds a \"like\" to a message" description: "Adds a \"like\" to the given message in the given conversation\nOauthScopes: WRITE_CONVERSATIONS, UPDATE_CONVERSATION_CONTENT" provider: circuitsandbox method: POST 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 } }