action noosh_attach_project { label: "Attach children projects to specific Project" description: "Attach children projects to specific Project" provider: noosh method: POST path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/children" encoding: json input: { type: "object" properties: { childProjectIds: { type: "array" items: { type: "integer" format: "int64" } } project_id: { type: "string" } workgroup_id: { type: "string" } } required: ["project_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.core.vo.HTTPStatusVO" properties: { status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }