action circuitsandbox_assign_label { label: "Adds a label to a conversation" description: "Adds a label to a conversation, you can search and organize your conversations based on these labels\nOauthScopes: WRITE_CONVERSATIONS, ORGANIZE_CONVERSATIONS" provider: circuitsandbox method: POST path: "/conversations/{convId}/label" encoding: form input: { type: "object" properties: { convId: { type: "string" } } required: ["convId"] additionalProperties: false } output: { properties: { labelId: { type: "string" description: "The unique ID of the label" } value: { type: "string" description: "The clear text value" } } } }