import shippo
s = shippo.Shippo(
api_key_header='ShippoToken <API_TOKEN>',
shippo_api_version='2018-02-08',
)
s.webhooks.delete_webhook(webhook_id='<id>')
# Use the SDK ...Deletes a specific webhook using the webhook object ID.
import shippo
s = shippo.Shippo(
api_key_header='ShippoToken <API_TOKEN>',
shippo_api_version='2018-02-08',
)
s.webhooks.delete_webhook(webhook_id='<id>')
# Use the SDK ...API key authentication using the ShippoToken scheme. Format: Authorization: ShippoToken <API_TOKEN> Example: Authorization: ShippoToken shippo_live_abc123
Object ID of the webhook to delete
Webhook deleted successfully
Was this page helpful?