GET

Get Async Job


Retrieves a job.

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}

Path Params
jobIdstringRequired

Job ID.

Response Object
jobJob

Returned job.

Get Async Job
Request
cURL
curl -X GET \ 'https://www.wixapis.com/async-jobs/v1/async-jobs/076e0505-6944-4645-a248-80b197ee9cfd' \ -H 'Authorization: <AUTH>'
Response
JSON
{ "job": { "id": "076e0505-6944-4645-a248-80b197ee9cfd", "metadata": { "meta1": "value1" }, "status": "INITIALIZED", "createdDate": "2024-04-22T10:23:25.798Z", "updatedDate": "2024-04-22T10:23:25.798Z", "createdBy": { "type": "APP_ID", "appIdOptions": { "appId": "338acb04-5b9b-4cdd-beb3-ea6739546d3a" } }, "counts": { "total": null, "successCount": 0, "failCount": 0, "errorByCodeCount": {} } } }
Errors

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

Did this help?