|
± http GET {REPOSITORYBASEURL}/export?{parameters}
Authorization: ...
|
|
HTTP/1.1 202 Accepted
Location: /export/job/<job_id>
{"job_id": "<job_id>"}
|
|
± http GET {REPOSITORYBASEURL}/export/job/<job_id>
Authorization: ...
|
|
HTTP/1.1 202 Accepted
{ "job_status": "RUNNING", "job_info": { "step":"Writing objects", "nb_objects_collected":102, "nb_objects_written":50, "time_ellapsed":4 }}
|
|
HTTP/1.1 202 Accepted
{ "job_status": "TERMINATED", "job_info": { "reason": "DONE", "result": "result.xmg" }}
|
|
HTTP/1.1 202 Accepted
{ "job_status": "TERMINATED", "job_info": { "reason": "ERROR", "errmsg": "Does not work!!!" }}
|
|
± http GET {REPOSITORYBASEURL}/export/job/<job_id>/result
Authorization: ...
|
|
HTTP/1.1 202 Accepted
………… file content ……………
|