The vuuh.com API to track when the job of adding products/order to the system completes (or fails).
GET https://onix.vuuh.com/api/v1/jobs/{id}
{id} (path parameter, required): The unique identifier (ID) of the job you want to verify.
Authentication is required to use this endpoint. Read more on the 🔒Authentication page.
curl -X GET -H "Authorization: Bearer mytoken34" https://onix.vuuh.com/api/v1/jobs/core:ingestjob:234782
- : The job with the specified ID exists in the system.
Example:
"substatus": "job_found",
"id": "core:ingestjob:234782",
"start_date": "2023-08-29T15:13:18.119189+00:00",
"end_date": "2023-08-29T15:13:30.107010+00:00",
"job" is an object with the following structure:
The current state of the job. It can be: pending, running, failed or finished.
The date the job started.
The date the job stopped.
The error that caused the job to fail.
Example:
"substatus": "invalid_job_id",
"description": "Invalid ID core::234782 shape."
- : Authentication is required and the provided credentials are missing.
Example:
"substatus": "not_authenticated",
"description": "Authentication credentials were not provided."
- : Authentication is required and the provided credentials are invalid.
Example:
"substatus": "permission_denied",
"description": "Invalid token."
- : The job ID is not found.
Example:
"substatus": "job_not_found",
"description": "ID core:ingestjob:234782 not found."
- : An internal server error occurred.
Example:
"substatus": "internal_error",
"description": "An internal problem has occurred."