Skip to main content
POST
/
pipelines
/
{pipelineId}
/
clone
Clone an existing pipeline
curl --request POST \
  --url https://api.artosai.com/pipelines/{pipelineId}/clone \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "pipelineId": "<string>",
  "name": "<string>",
  "cloned_from": "<string>",
  "status": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

pipelineId
string
required

Body

application/json
name
string
required

Response

201 - application/json

Pipeline cloned

pipelineId
string
name
string
cloned_from
string
status
string
created_at
string<date-time>