GET

List Async Job Items


Retrieves a list of job items.

Authentication

You can only call this method when authenticated as a Wix app or Wix user identity.

Permissions
READ ASYNC JOBS
Manage Stores - all permissions
Manage Products
Learn more about app permissions.
Endpoint
GET
https://www.wixapis.com/async-jobs/v1/async-jobs/{jobId}/items

Path Params
jobIdstringRequired

Job ID.

Query Params
paging.limitintegerminimum 0maximum 100format int32

Maximum number of items to return in the results.


paging.cursorstringmaxLength 16000

Pointer to the next or previous page in the list of results.

Pass the relevant cursor token from the pagingMetadata object in the previous call's response. Not relevant for the first request.


statusFilterstring

async job item status filter.

Response Object
resultsArray <AsyncJobItem>

Job items.


pagingMetadataPagingMetadata

Paging metadata.

List Async job Items
Request
cURL
curl -X GET \ 'https://www.wixapis.com/async-jobs/v1/async-jobs/076e0505-6944-4645-a248-80b197ee9cfd/items?limit=10' \ -H 'Authorization: <AUTH>'
Response
JSON
{ "results": [ { "id": "365b44a2-61b2-42a0-87cf-272e7c42cc6e", "data": {}, "entityId": "entity1", "success": true }, { "id": "6fe127a3-9846-480f-8d9c-dc1e00623eaa", "data": {}, "entityId": "entity2", "success": true } ], "pagingMetadata": { "count": 2, "cursors": {}, "hasNext": false } }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?