action circuitsandbox_add_favorite { label: "Adds a conversation to the favorites" description: "Adds a conversation to the favorites. Favorites can be displayed in a separate side tab inside of the Circuit client to have a better overview of important conversations.\nOauthScopes: WRITE_CONVERSATIONS" provider: circuitsandbox method: POST path: "/conversations/{convId}/favorite" encoding: json input: { type: "object" properties: { convId: { type: "string" } } required: ["convId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }