Bulk Style Job Status GET Endpoint
Endpoint
- Method: GET
- URI: https://api.jooraccess.com/v2/bulk-style/[bulk_styles_job_id]
Params
- Accept: application/xml OR application/json
- Authorization: OAuth2 [Base64 encoded token]
Bulk Style Job GET Response Field Details
FIELD NAME | TYPE | DESCRIPTION |
---|---|---|
+ bulk_styles | node | |
+ response | node | |
code | Integer | success/error code |
+ bulk_styles_jobs | node | |
+ bulk_style_job | node | |
bulk_styles_job_id | Integer | A JOOR unique identifier for the bulk styles job |
status | String | "queued", "started", "finished" |
created | Date/Time | Job creation date |
modified | Date/Time | Job last modification date |
style_record_count | Integer | Number of styles that are in the job |
style_record_progress | Integer | Style record number, if the job has been started |
Bulk Style Job GET Request Example
GET | https://api.jooraccess.com/v2/bulk-style/4
Returns status of bulk style job ID 4.
Bulk Style Job GET Response Example
<?xml version="1.0" encoding="UTF-8"?>
<bulk_styles>
<response>
<code>0</code>
</response>
<bulk_styles_jobs>
<bulk_style_job>
<bulk_styles_job_id>4</bulk_styles_job_id>
<status>finished</status>
<created>2016-07-07T18:17:16+00:00</created>
<modified>2016-07-07T18:19:32+00:00</modified>
<style_record_count>2</style_record_count>
<style_record_progress>2</style_record_progress>
</bulk_style_job>
</bulk_styles_jobs>
</bulk_styles>
{
"bulk_styles": {
"response": {
"code": 0
},
"bulk_styles_jobs": [
{
"bulk_styles_job_id": 4,
"status": "finished",
"created": "2016-07-07T18:17:16+00:00",
"modified": "2016-07-07T18:19:32+00:00",
"style_record_count": 2,
"style_record_progress": 2
}
]
}
}