PATCH
/
webhook
/
{webhook_id}
curl --request PATCH \
  --url https://api.pathstack.io/webhook/{webhook_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "filters": {
    "connection_ids": [
      "<string>"
    ],
    "tags": [
      "<string>"
    ],
    "device_ids": [
      "<string>"
    ],
    "connection_devices": [
      {
        "connection_id": "<string>",
        "system_device_ids": [
          "<string>"
        ]
      }
    ]
  },
  "options": {
    "include_speed": true,
    "include_driver_id": true
  },
  "url": "<string>",
  "enabled": true
}'
{
  "data": {
    "filters": {
      "connection_ids": [
        "<string>"
      ],
      "tags": [
        "<string>"
      ],
      "device_ids": [
        "<string>"
      ],
      "connection_devices": [
        {
          "connection_id": "<string>",
          "system_device_ids": [
            "<string>"
          ]
        }
      ]
    },
    "options": {
      "include_speed": true,
      "include_driver_id": true
    },
    "url": "<string>",
    "enabled": true,
    "id": "<string>",
    "error_count": 123,
    "last_error": "<string>",
    "last_error_at": "2023-11-07T05:31:56Z",
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Headers

x-api-version
string
default:2024-03-27
Example:

"2024-03-27"

Path Parameters

webhook_id
string
required

ID of the Webhook to be updated

Body

application/json

Details for webhook

filters
object | null
options
object | null
url
string | null
enabled
boolean | null

Response

200
application/json
Successful Response
data
object
required

Successful response payload