curl --request PUT \
--url https://api.streamkap.com/pipelines/bulk_update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"payload": {
"tags": [
"<string>"
]
},
"ids": [
"<string>"
],
"select_all": false,
"filters": {
"source_id": "<string>",
"destination_id": "<string>"
}
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Update tags for multiple pipelines in bulk.
Supports two modes:
curl --request PUT \
--url https://api.streamkap.com/pipelines/bulk_update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"payload": {
"tags": [
"<string>"
]
},
"ids": [
"<string>"
],
"select_all": false,
"filters": {
"source_id": "<string>",
"destination_id": "<string>"
}
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bulk update pipeline request.
Supports two modes:
Successful Response
Was this page helpful?