Generate the optimal plan for your task assigning problem.
curl -X GET -H 'Accept:application/json' http://localhost:8080/demo-data -o sample.json
The POST operation returns a jobId that should be used in subsequent commands.
curl -X POST -H 'Content-Type:application/json' http://localhost:8080/schedules -d@sample.json
curl -X GET -H 'Accept:application/json' http://localhost:8080/schedules/{jobId}/status
curl -X GET -H 'Accept:application/json' http://localhost:8080/schedules/{jobId} -o solution.json
curl -X PUT -H 'Content-Type:application/json' http://localhost:8080/schedules/analyze -d@solution.json
curl -X DELETE -H 'Accept:application/json' http://localhost:8080/schedules/{jobId}