Update an existing webhook configuration
PUT https://api.mavapay.co/api/v1/webhook
curl -X PUT https://api.mavapay.co/api/v1/webhook \ -H "Content-Type: application/json" \ -H "X-API-KEY: your_api_key_here" \ -d '{ "url": "https://your-new-domain.com/webhook", "secret": "your_new_webhook_secret" }'
{ "status": "success", "data": { "id": "wh_123456789", "url": "https://your-new-domain.com/webhook", "isActive": true, "updatedAt": "2024-03-21T15:30:00Z" } }