Get Job by ID
Retrieve detailed information about a specific job
This endpoint retrieves detailed information about a job by its ID, including its status, progress, and associated check results.
API Endpoint
Query Parameters
The unique identifier of the job to retrieve.
If true, includes only the IDs of check results. Cannot be used with include_check_results
.
If true, includes full check result objects. Cannot be used with include_check_result_ids
.
If true, includes status messages associated with the job.
Response
The unique identifier for the job.
The ID of the agent that executed the job.
The email address of the job owner.
The current status of the job (e.g., PENDING, RUNNING, COMPLETED).
The timestamp when the job started.
The timestamp when the job completed.
The recommendation based on the job results.
The input data provided for the job.
An array of status messages associated with the job.
An array of check results from the job execution.
Usage Examples
Example Response
Notes
The include_check_result_ids
and include_check_results
parameters are mutually exclusive. Using both will result in a 400 Bad Request error.
Access to job details is restricted. The API will return a 401 Unauthorized error if the user doesn’t have access to the specified agent.
If the job is not found, a 404 Not Found error will be returned.
This endpoint provides a comprehensive view of a job’s status and results, allowing for detailed tracking and analysis of the KYB/KYC process.
Error Responses
”Cannot include both check result ids and check results in the response"
"Unauthorized"
"Job not found”