Skip to content

/api/v1/data/webhooks/{id}

PATCH
/api/v1/data/webhooks/{id}
curl --request PATCH \
--url https://example.com/api/v1/data/webhooks/1 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "isActive": true, "eventTypes": [ "example" ], "description": "example" }'
id
required
integer format: int32
object
isActive
boolean
nullable
eventTypes
Array<string>
nullable
description
string
nullable
Example generated
{
"isActive": true,
"eventTypes": [
"example"
],
"description": "example"
}

OK