Proxy Public Beta is currently closed for new customers. Please consider using Twilio Conversations and Programmable Voice directly if you are building your masking application.
Note that this does not have any impact on Twilio Flex customers.
Twilio's Proxy API is currently available as a Public Beta product. Some features are not yet implemented and others may be changed before the product is declared as Generally Available.
Public Beta products are not covered by a Twilio SLA.
Proxy is now available in beta. If you are a customer who previously used the developer preview version of Proxy, you will need to update your code to use the new version.
There is no data migration between the preview version and the beta version. All objects must be created anew.
Here we've collected the largest sticking points to keep in mind when moving your application to beta from developer preview. These sections detail how to
Via the API, the URL for Proxy changes.
https://proxy.twilio.com/v1/Services
https://preview.twilio.com/Proxy/Services
In the helper libraries, the pattern is to drop the preview
reference in your code.
For example, in Node.js, the code for creating a Service changes from:
1client.proxy.services2.create({3uniqueName: 'My Awesome Service',4callbackUrl: 'https://www.example.com/',5})6.then(response => {7console.log(response);8})9.catch(err => {10console.log(err);11});
1client.preview.proxy.services.create(23friendly_name: 'My Awesome Service',45callback_url: 'https://www.example.com/'67)
NOTE: friendly_name
is now unique_name
. This is a required change in Proxy beta!
For examples in all six supported languages and cURL on how to make this change, refer to the quickstart guide.
To add phone numbers to your new service, follow the steps in the updated quickstart guide. If you add phone numbers to the beta service currently attached to your developer preview service, they will move to be associated with the newly created service.
Also note the changes for Proxy Beta on specific resources. This page details the changes you'll need to make note of while moving to beta.
See the REST resource page for Proxy Service for descriptions of the new parameter features.
Old field | New field | Notes |
---|---|---|
FriendlyName | UniqueName | Must be a unique name per service. |
OutOfSessionCallbackUrl | ||
InterceptCallbackUrl | ||
GeoMatchLevel | ||
NumberSelectionBehavior | ||
DefaultTtl |
See the REST resource page for Proxy Session for descriptions of the new parameter features.
Old field | New field | Notes |
---|---|---|
StartTime | DateStarted | |
EndTime | DateEnded | |
Mode | ||
DateLastInteraction | ||
ClosedReason |
See the REST resource page for Proxy Interaction for a description of Data
.
Old field | New field | Notes |
---|---|---|
Description | Data |
See the REST resource page for Proxy Participant for a description of DateDeleted
.
Old field | New field | Notes |
---|---|---|
DateDeleted |