Skip to main content
GET
GET /v1/services/pipelineServices/{id}

Retrieve a Pipeline Service

Get a single pipeline service by its unique ID or fully qualified name.

Get by ID

string
required
UUID of the pipeline service to retrieve.
string
Comma-separated list of fields to include (e.g., owners,tags,domains).
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.

Get by Fully Qualified Name

Use GET /v1/services/pipelineServices/name/{fqn} to retrieve by fully qualified name.
string
required
Fully qualified name of the pipeline service (e.g., sample_airflow).
string
Comma-separated list of fields to include: owners, tags, domains.
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.
GET /v1/services/pipelineServices/{id}

Returns

Returns a pipeline service object with all requested fields populated.

Response

string
Unique identifier for the pipeline service (UUID format).
string
Pipeline service name.
string
Fully qualified name of the service.
string
Human-readable display name.
string
Description of the pipeline service in Markdown format.
string
Type of pipeline service (e.g., Airflow, Dagster, Fivetran).
object
Connection configuration for the service.
number
Version number for the entity.
array
List of owners. Only included when fields contains owners.
array
Classification tags. Only included when fields contains tags.
array
Domain assignments. Only included when fields contains domains.

Error Handling