Reintentar items fallidos
Automeli · Jobs Cabin, NC · 3 days ago
OTHRFull-time
About the Endpoint
The endpoint retrieves the status of a job and its items, paginated. It requires the products:read scope.
Request
The request is a GET to /products/jobs/{jobId}. The jobId is a required parameter. Optional filters include status, limit, and offset.
Response
The response includes the job status and its items. The job object contains the job_id, status, total_items, successful, failed, and completed_at. The items array contains objects with sku, status, listing_id, permalink, and price.
- job_id: the unique identifier of the job
- status: the status of the job (e.g. completed)
- total_items: the total number of items in the job
- successful: the number of successful items in the job
- failed: the number of failed items in the job
- completed_at: the timestamp when the job was completed
- sku: the stock-keeping unit of the item
- status: the status of the item (e.g. success)
- listing_id: the identifier of the listing
- permalink: the permanent link to the item
- price: the price of the item
Errors
- E_AUTH_FORBIDDEN_SCOPE: the API key does not have the required permission (403)
- E_JOB_NOT_FOUND: the jobId does not exist or is not associated with the seller (404)