action circuitsandbox_unassign_labels { label: "Unassign labels" description: "Unassign labels from a space\nOauthScopes: WRITE_SPACE, ORGANIZE_SPACE" provider: circuitsandbox method: DELETE path: "/spaces/{id}/labels/unassign" encoding: form input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { properties: { labelIds: { type: "array" description: "A list of label ids." items: { type: "string" } } } } } }