action noosh_post_project { label: "Create a Project" description: "Create a Project" provider: noosh method: POST path: "/v1/workgroups/{workgroup_id}/projects" encoding: json input: { type: "object" properties: { workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.ProjectVO" properties: { project_id: { type: "integer" format: "int64" } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }