# Get job Returns details of a specific job. Endpoint: GET /jobs/{jobId} Version: 1.0.0 Security: ApiKeyAuth, OrgIdAuth ## Path parameters: - `jobId` (string, required) Unique identifier for the job Example: "deaf5733-cb4c-40ec-9b59-5de3fab80a80" ## Response 200 fields (application/json): - `job` (object) - `job.id` (string, required) Unique identifier for the job - `job.orgId` (string, required) Organization ID - `job.agentId` (string, required) Agent assigned to this job - `job.name` (string, required) Job name Example: "Daily Sales Report" - `job.description` (string) Job description Example: "Generate daily sales summary report" - `job.schedule` (string, required) Job schedule frequency Enum: "hourly", "daily", "weekly", "monthly" - `job.status` (string, required) Job status Enum: "queued", "running", "completed", "failed" - `job.lastRunAt` (string,null) Last execution timestamp - `job.runsCount` (integer) Number of times executed - `job.createdAt` (string) - `job.updatedAt` (string) - `job.agentName` (string) Name of the assigned agent ## Response 400 fields (application/json): - `error` (string) Error message Example: "Missing required headers" - `details` (string) Additional error details Example: "x-api-key and x-org-id headers are required" ## Response 401 fields (application/json): - `error` (string) Error message Example: "Missing required headers" - `details` (string) Additional error details Example: "x-api-key and x-org-id headers are required" ## Response 403 fields (application/json): - `error` (string) Error message Example: "Missing required headers" - `details` (string) Additional error details Example: "x-api-key and x-org-id headers are required" ## Response 404 fields (application/json): - `error` (string) Error message Example: "Missing required headers" - `details` (string) Additional error details Example: "x-api-key and x-org-id headers are required"