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