---
title: "Get Pipeline Element"
method: GET
path: "/pipelines/elements/{element_id}"
tags: ["Pipeline"]
---

# Get Pipeline Element

`GET /pipelines/elements/{element_id}`

Get a single pipeline element by its id

## Path parameters

- `element_id` string, required

## Response `200`

Successful Response

- PipelineElement — Model for representing a pipeline element in API responses.
  - `id` string, required
  - `pipeline_id` string, required
  - `name` string, required
  - `element_order` integer, required — Order of execution within the pipeline (1-based)
  - `element_type` 'Direct Entry' | 'Data Fit' | 'Array Data Fit' | 'Calculation' | 'Validation', required
  - `job_config` object, required — Configuration parameters for the job
  - `job_id` string, nullable
  - `result` object, nullable
  - `status` 'pending' | 'running' | 'completed' | 'failed' | 'skipped' | 'canceled', required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `error` string, nullable
  - `error_code` 'CONFIGURATION_ERROR' | 'MODEL_ERROR' | 'SOLVER_ERROR' | 'EXECUTION_TIMEOUT' | 'SUBMISSION_FAILED' | 'INTERNAL_ERROR' — Machine-readable error codes for jobs.
  - `error_detail` object, nullable
  - `job_status` string, nullable — Job status via job_id (from jobs.status).
  - `organization_id` string, required — Organization this pipeline element belongs to.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/ionworks/apis/fastapi.md) · [All operations](https://skmtc.dev/ionworks/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/ionworks/fastapi/revisions/7337a3cbdaf2/schema)
