Skip to main content
PUT
/
v1
/
customer
/
webhook_endpoints
/
{id}
Update webhook endpoint (Customer)
curl --request PUT \
  --url https://api.example.com/v1/customer/webhook_endpoints/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "https://example.com/webhook",
  "description": "Updated webhook"
}
'

Path Parameters

id
string
required

Webhook endpoint ID

Body

application/json
url
string

Webhook endpoint URL

Example:

"https://example.com/webhook"

description
string

Webhook endpoint description

Example:

"Updated webhook"

Response

Webhook endpoint updated successfully