POST
/
pipeline
/
{id}
/
pause
curl --request POST \
  --url https://api.vectorshift.ai/v1/pipeline/{id}/pause \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "run_id": "<string>"
}'
{
  "status": "success"
}

Authorizations

Authorization
string
header
required

Bearer token authentication using API key

Path Parameters

id
string
required

Pipeline ID

Body

run_id
string
required

Response

200
application/json
Pipeline paused successfully
status
enum<string>
required
Available options:
success,
failed