What is changing in MyOperator’s webhook system and how do I migrate from GET to POST?
⚡ Quick answer
MyOperator is deprecating the GET method (plus query-string parameters, non-JSON formats, and old log filters).
From 28 Nov 2025, all new webhooks must be POST + JSON, and existing GET webhooks will keep firing and will automatically switch to view-only mode. Create a new POST webhook to remain fully supported.
When should I use this guide?
Read on if you:
- Need to create a new webhook
- Still rely on GET/query-string/Non-JSON patterns
- Want exact dates, supported formats, and the actions required by the November 2025 update
1. Why is MyOperator updating the webhook system?
To improve security, consistency, and integration performance, MyOperator is modernising its webhook framework. The new design removes outdated patterns and simplifies configuration for all users.
2. What exactly is changing?
Deprecated (becomes view-only):
- GET method
- Dynamic query-string parameters (e.g.
?caller={{mobile}}&agent={{agent_id}}) - Non-JSON content types (XML, form-data, etc.)
- Legacy log filters (Mobile/SMS-based filters)
Supported now (standard going forward):
Area | New rule |
|---|---|
HTTP method | POST only |
Payload format | JSON only |
URL parameters | Static (no dynamic variables) |
Events | Applies to both in-call and after-call webhooks |
This POST + JSON approach avoids URL tampering, improves reliability, and ensures uniform behaviour across systems.
3. Action required (if applicable)
Your webhook needs attention (it will be view-only) if it uses:
- GET method
- Dynamic query parameters
- Non-JSON formats
- Old filters
Required steps:
- Create a new webhook using the POST method and JSON payload.
- Point your endpoint to accept
Content-Type: application/json.
4. When does my GET webhook still work?
- Existing GET webhooks continue to fire exactly as before.
- After 28 Nov 2025, they become view-only. You cannot edit them.
- Any webhook created on or after 28 Nov 2025 must follow the POST + JSON standard.
5. Need assistance?
If you need help migrating or identifying impacted webhooks, MyOperator Support is ready to assist.
Keywords: MyOperator webhooks, GET deprecation, POST only, JSON payload, webhook migration
Updated on: 27/11/2025