Skip to main content
PATCH
/
v1
/
shared-pipelines
/
artifacts
Enable or Disable a Shared Pipeline Artifact Version
curl --request PATCH \
  --url https://eu1.api.matillion.com/dpc/v1/shared-pipelines/artifacts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "enabled": true,
  "sharedPipelineIdPrefix": "my-shared-pipeline",
  "versionName": "1.0.0"
}
'
{
  "enabled": true,
  "versionName": "1.0.0"
}

Documentation Index

Fetch the complete documentation index at: https://docs.maia.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

a valid bearer token

Body

application/json
enabled
boolean
required

Whether this version of the shared pipeline is enabled

Example:

true

sharedPipelineIdPrefix
string
required

The prefix identifier grouping related shared pipelines

Minimum string length: 1
Example:

"my-shared-pipeline"

versionName
string
required

The version name of the shared pipeline artifact

Required string length: 1 - 255
Example:

"1.0.0"

Response

Shared pipeline artifact version updated successfully

enabled
boolean

Whether this version of the shared pipeline is enabled

Example:

true

versionName
string

The version name of the shared pipeline artifact

Example:

"1.0.0"