Skip to main content
PUT
/
v1
/
projects
/
{projectID}
/
subscriptions
/
{subscriptionID}
/
filters
/
bulk_update
Update multiple subscription filters
curl --request PUT \
  --url https://us.getconvoy.cloud/api/v1/projects/{projectID}/subscriptions/{subscriptionID}/filters/bulk_update \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "uid": "<string>",
    "body": {},
    "event_type": "<string>",
    "headers": {}
  }
]
'
{
  "message": "<string>",
  "status": true,
  "data": [
    {
      "body": {},
      "event_type": "<string>",
      "headers": {},
      "raw_body": {},
      "raw_headers": {},
      "subscription_id": "<string>",
      "uid": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://getconvoy.io/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Path Parameters

projectID
string
required

Project ID

subscriptionID
string
required

Subscription ID

Body

application/json

Filters to update

uid
string
required
body
object
event_type
string
headers
object

Response

OK

message
string
status
boolean
data
object[]