get_job
Retrieve specific agent job details by providing a unique job ID and organization ID for efficient monitoring and management of AI agent tasks.
Instructions
Retrieves an agent job by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
job_id | Yes | The unique identifier of the job you want to retrieve. Example: 'job-12345'. | |
org_id | No | The organization ID. Example: 'aiconnect'. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"job_id": {
"description": "The unique identifier of the job you want to retrieve. Example: 'job-12345'.",
"type": "string"
},
"org_id": {
"description": "The organization ID. Example: 'aiconnect'.",
"type": "string"
}
},
"required": [
"job_id"
],
"type": "object"
}