action circuitsandbox_assign_labels { label: "Assign labels" description: "Assign labels to space\nOauthScopes: WRITE_SPACE, ORGANIZE_SPACE" provider: circuitsandbox method: POST path: "/spaces/{id}/labels/assign" 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" } } } } } }