action noosh_post_task_for_project { label: "Create a new task" description: "Create a new task" provider: noosh method: POST path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/tasks" encoding: json input: { type: "object" properties: { actual_duration: { type: "number" format: "double" } actual_duration_hour: { type: "number" format: "double" } actual_end_date: { type: "string" format: "date" } actual_start_date: { type: "string" format: "date" } assign_to_user_id: { type: "integer" format: "int64" } comments: { type: "string" } contributors: { type: "string" } custom_status_id: { type: "integer" format: "int64" } description: { type: "string" } name: { type: "string" } percentage_complete: { type: "integer" format: "int64" } priority: { type: "integer" format: "int64" } project_id: { type: "string" } revised_duration: { type: "number" format: "double" } revised_duration_hour: { type: "number" format: "double" } revised_end_date: { type: "string" format: "date" } revised_start_date: { type: "string" format: "date" } status_id: { type: "integer" format: "int64" } task_id: { type: "integer" format: "int64" } task_type_id: { type: "integer" format: "int64" } workgroup_id: { type: "string" } } required: ["project_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.ne.TaskCreatedVO" properties: { status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } task_id: { type: "integer" format: "int64" } } } }