StatusService
A list of all methods in the StatusService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
cai_job_status_get | Returns async task status by Job ID |
cai_job_status_get
Returns async task status by Job ID
- HTTP Method:
GET
- Endpoint:
/ai/status/v1/jobs/{jobId}
Parameters
Name | Type | Required | Description |
---|---|---|---|
job_id | str | ✅ | The job id to which status will be fetched |
Return Type
JobStatusResponse
Example Usage Code Snippet
from ring_central import RingCentral, Environment
sdk = RingCentral(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value
)
result = sdk.status.cai_job_status_get(job_id="jobId")
print(result)
Build Your Own SDKs with liblab
Build developer friendly SDKs in minutes from your APIs