diff --git a/examples/python/twilio/rest/api/v2010/account/__init__.py b/examples/python/twilio/rest/api/v2010/account/__init__.py index 65661ae95..e97b0d94f 100644 --- a/examples/python/twilio/rest/api/v2010/account/__init__.py +++ b/examples/python/twilio/rest/api/v2010/account/__init__.py @@ -421,6 +421,7 @@ def create( "X-Twilio-Webhook-Enabled": x_twilio_webhook_enabled, } ) + payload = self._version.create( method="POST", uri=self._uri, data=data, headers=headers ) @@ -458,6 +459,7 @@ async def create_async( "X-Twilio-Webhook-Enabled": x_twilio_webhook_enabled, } ) + payload = await self._version.create_async( method="POST", uri=self._uri, data=data, headers=headers )