Skip to content

Update Webhook

PUT
/api/v1/webhooks/{webhook_id}
curl --request PUT \
--url https://api.qeychain.xyz/api/v1/webhooks/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \
--header 'Content-Type: application/json' \
--data '{ "url": "example", "events": [ "example" ], "addresses_filter": [ "example" ], "description": "example", "headers": { "additionalProperty": "example" }, "is_active": true }'

Update webhook settings.

webhook_id
required
Webhook Id
string format: uuid
Media typeapplication/json
UpdateWebhookRequest

Request to update a webhook.

object
url
Any of:
string
<= 2048 characters
events
Any of:
Array<string>
addresses_filter
Any of:
Array<string>
description
Any of:
string
headers
Any of:
object
key
additional properties
string
is_active
Any of:
boolean
Examplegenerated
{
"url": "example",
"events": [
"example"
],
"addresses_filter": [
"example"
],
"description": "example",
"headers": {
"additionalProperty": "example"
},
"is_active": true
}

Successful Response

Media typeapplication/json
Response Update Webhook Api V1 Webhooks Webhook Id Put
object
key
additional properties
any
Examplegenerated
{}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}