Update a webhook
Update mutable configuration fields for an existing seller webhook endpoint.
This is a partial update endpoint. Send only the fields you want to change.
Updatable fields:
- ‘url’
- ‘description’
- ‘enabled’
- ‘additionalHeaders’
Behavior notes:
- URL uniqueness is enforced; updating to a duplicate URL returns 409.
- If no updatable fields are supplied, the current webhook state is returned unchanged.
- Subscription events are not modified here; use PUT /seller/webhooks//subscriptions.
Recommended change flow:
- GET /seller/webhooks/ to load current configuration.
- PATCH this endpoint with only the fields being changed.
- GET /seller/webhooks//test to validate connectivity after URL/header changes.
- Review failures and metrics to confirm post-change stability.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Identifier of the webhook endpoint to update
Body
Fields that can be updated on a webhook endpoint
Destination URL that will receive webhook deliveries
Optional human readable description
1024Whether the webhook should be active immediately
Additional headers to include on webhook deliveries
Initial subscriptions to associate with the webhook
1Event types that can trigger a webhook notification
LISTING_CREATED, LISTING_UPDATED, LISTING_DELETED, ORDER_CREATED, ORDER_UPDATED, TEST Response
Updated webhook endpoint
Represents a webhook endpoint configured by a seller to receive event notifications.
Unique identifier for the webhook endpoint
Destination URL for webhook deliveries
Indicates whether the webhook is currently active
Additional headers sent with each webhook request
Shared secret used to generate webhook signatures
Timestamp of the most recent successful delivery
Timestamp of the most recent failed delivery
Current number of consecutive delivery failures
Threshold at which the webhook will automatically be disabled
Timestamp when the webhook endpoint was created
Timestamp when the webhook endpoint was last updated
Event types that the webhook is subscribed to
Event types that can trigger a webhook notification
LISTING_CREATED, LISTING_UPDATED, LISTING_DELETED, ORDER_CREATED, ORDER_UPDATED, TEST Optional human readable description