v1

latestOpenAPI 3.1.02026-07-22106199311.5 KB
Shared Pipeline Artifacts

Get Shared Pipeline Artifact Details

Returns artifact metadata and the list of shared pipelines within a specific version. If versionName is omitted, the latest version is returned.

get/v1/shared-pipelines/artifacts/details

Query parameters

sharedPipelineIdPrefixstring required

${sharedpipeline.metadata.sharedPipelineIdPrefix.desc}

Example:my-shared-pipeline

The prefix identifier grouping related shared pipelines

versionNamestring

${sharedpipeline.metadata.versionName.desc}

Example:1.0.0

The version name of the shared pipeline artifact

Response

Shared pipeline artifact details retrieved successfully

Example response

{
  "artifactDetails": {
    "branch": "main",
    "commitHash": "a1b2c3d4e5f6",
    "createdAt": "2025-01-15T10:30:00.000Z",
    "enabled": true,
    "provider": "matillion",
    "sharedPipelineIdPrefix": "my-shared-pipeline",
    "versionName": "1.0.0"
  },
  "sharedPipelines": [
    {
      "description": "ETL pipeline for loading data",
      "sharedPipelineId": "my-pipeline",
      "sourcePipeline": "pipelines/etl-load"
    }
  ]
}