Skip to main content
PUT
/
transforms
/
bulk_update
Update Bulk Transforms
curl --request PUT \
  --url https://api.streamkap.com/transforms/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": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Generic bulk update request for tags on any entity type.

Supports two modes:

  1. Explicit IDs: Pass a list of entity IDs to update
  2. Select all: Set select_all=true with optional filters
payload
BulkUpdatePayload · object
required

Payload for bulk tag updates across entity types.

ids
string[] | null

List of entity IDs to update

select_all
boolean
default:false

If true, select all entities matching the filters

filters
BulkSelectionFilter · object

Optional filters when using select_all

Response

Successful Response