# ai_mentor_orgs_users_planned_jobs_retrieve Endpoints for viewing jobs and their status A job run refers to a task with steps that an agent is going to undertake. You can filter job runs by their status. Note that for a single user and a specified session, at most only one JobRun instance is active at any point in time. Endpoint: GET /api/ai-mentor/orgs/{org}/users/{user_id}/planned-jobs/{id}/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `id` (integer, required) A unique integer value identifying this job run. - `org` (string, required) - `user_id` (string, required) ## Response 200 fields (application/json): - `id` (integer, required) - `title` (string, required) - `description` (string) - `session` (string, required) - `active` (boolean) - `created_at` (string, required) - `updated_at` (string, required) - `steps` (array, required) - `steps.status` (string) * - Completed * - Failed * - Pending Enum: "completed", "failed", "pending" - `steps.position` (integer, required) - `steps.job` (integer, required)