from meibelai import Meibelai
import os
with Meibelai(
api_key_header=os.getenv("MEIBELAI_API_KEY_HEADER", ""),
) as m_client:
res = m_client.confidence_scoring.get_scoring_job(job_id="<id>")
# Handle response
print(res)
Get a scoring job by ID. Returns 403 if the job does not belong to the caller’s customer.
GET
/
confidence-scoring
/
job
/
{job_id}
Python (SDK)
from meibelai import Meibelai
import os
with Meibelai(
api_key_header=os.getenv("MEIBELAI_API_KEY_HEADER", ""),
) as m_client:
res = m_client.confidence_scoring.get_scoring_job(job_id="<id>")
# Handle response
print(res)