61006: Add-ons: Add-ons unavailable for GET callbacks
WARNING
This warning appears when you use a Twilio Marketplace Add-on with an incoming Messaging or Voice webhook that is configured to send GET requests. Twilio does not include Add-on results in GET callbacks because URL length constraints can prevent the AddOns payload from being delivered.
- Your incoming Messaging webhook is configured to use
GET. Add-on results for Programmable SMS are only included inPOSTcallbacks. - Your incoming Voice webhook is configured to use
GET. Add-on results for Programmable Voice calls are only included inPOSTcallbacks. - Your application expects the
AddOnsparameter in the callback even though the request method isGET. Twilio omits that data fromGETcallbacks for these Add-on usage points.
- Change the incoming webhook method to
POSTfor the Messaging or Voice flow that invokes the Add-on. Twilio supports bothGETandPOSTfor these webhooks, andPOSTis required when you need Add-on results in the callback. - Update your application to read Add-on results from the
AddOnsparameter in thePOSTrequest body after you switch the webhook method. - If you need
GETfor caching static TwiML or webhook responses, do not rely on Add-on data in that callback. UsePOSTfor the endpoint that must receive Add-on results.