action circuitsandbox_delete_favorite { label: "Removes a conversation from favorites" description: "Removes a conversation from 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: DELETE path: "/conversations/{convId}/favorite" encoding: json input: { type: "object" properties: { convId: { type: "string" } } required: ["convId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }