The job status endpoint lets you retrieve information about jobs you have ran previously. With the job status endpoint, you can get the job results, submitted selfie and liveness images, and the ID response (this is only available on the Enhanced KYC and Biometric KYC products).
If you are querying job status for a job immediately after submitting it, you might need to keep polling job status till you get a result. We recommend you always submit your job with a callback.
To run job status for a job, you can edit the sample code below:
from smile_id_core import Utilities,ServerError# Initializepartner_id ="<Put your partner ID here>";#login to the Smile ID portal to view your partner idapi_key ="<Put your API key here>";# copy your API key from the Smile ID portalsid_server =<0|1>;# Use 0 for the sandbox server, use 1 for production serverconnection =Utilities(partner_id,api_key,sid_server)# Set the Partner Paramspartner_params = {"user_id":"<put previously registered user's user_id here>","job_id":"<put your unique job ID here>",}# Set options for the job statusoptions = {"return_job_status":True, "return_history": <True | False>, # Set to true to return results of all jobs you have ran for the user in addition to current job result. You must set return_job_status to true to use this flag.
"return_images": <True | False>, # Set to true to receive selfie and liveness images you uploaded. You must set return_job_status to true to use this flag.
"signature":True}# Get the job statustry: response = connection.get_job_status(partner_params,options)except ValueError:# some of your params entered for a job are not valid or missingprint("handle ValueError")except ServerError:# Server returned an errorprint("handle ServerError")except FileNotFoundError:# Sent a file which could not be foundprint("handle FileNotFoundError")
Example Response
If you set both return_history and return_images to True, you will receive the JSON object containing the result like below: