Skip to main content
PUT
/
pipelines
/
bulk_update
Update Bulk Pipelines
curl --request PUT \
  --url https://api.streamkap.com/pipelines/bulk_update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    "<string>"
  ],
  "payload": {
    "tags": [
      "<string>"
    ]
  },
  "update_all": false
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Bulk update pipeline request.

ids
string[]
required
payload
BulkUpdatePayload · object
required
update_all
boolean
default:false

Response

Successful Response