action circuitsandbox_remove_label { label: "Remove a user label" description: "Remove a label from the list of user labels\nOauthScopes: WRITE_USER_PROFILE, ORGANIZE_CONVERSATIONS" provider: circuitsandbox method: DELETE path: "/users/labels/{labelId}" encoding: json input: { type: "object" properties: { labelId: { type: "string" } } required: ["labelId"] additionalProperties: false } output: { properties: { labelId: { type: "string" description: "The unique ID of the label" } value: { type: "string" description: "The clear text value" } } } }