|
± http POST {REPOSITORYBASEURL}/import?{parameters}
Authorization: ...
………… multipart content ……………
|
|
HTTP/1.1 202 Accepted
Location: /import/job/<job_id>
{"job_id": "<job_id>"}
|
|
± http GET {REPOSITORYBASEURL}/import/job/<job_id>
Authorization: ...
|
|
HTTP/1.1 202 Accepted
{ "job_status": "RUNNING", "job_info": null}
|
|
HTTP/1.1 202 Accepted
{"job_status": "TERMINATED", "job_info": { "reason": "DONE", "rejects": false }}
|
|
HTTP/1.1 202 Accepted
{"job_status": "TERMINATED", "job_info": { "reason": "DONE", "rejects": true, "rejects_file_name": "<rejects_filename>" }}
|
|
± http GET {REPOSITORYBASEURL}/export/job/<job_id>/rejects
Authorization: ...
|
|
HTTP/1.1 202 Accepted
………… rejects file content ……………
|