Generate the optimal schedule for your employees.
curl -X GET -H 'Accept:application/json' http://localhost:8080/demo-data/SMALL -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}
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/{id}