Create connection policy target
Network element entry points into your communications infrastructure
Path parameters
-
The SID of the Connection Policy that owns the Target.
Body
-
Enabled boolean
Whether the Target is enabled. The default is
true
. -
FriendlyName string
A descriptive string that you create to describe the resource. It is not unique and can be up to 255 characters long.
-
Priority integer
The relative importance of the target. Can be an integer from 0 to 65535, inclusive, and the default is 10. The lowest number represents the most important target.
-
The SIP address you want Twilio to route your calls to. This must be a
sip:
schema.sips
is NOT supported. -
Weight integer
The value that determines the relative share of the load the Target should receive compared to other Targets with the same priority. Can be an integer from 1 to 65535, inclusive, and the default is 10. Targets with higher values receive more load than those with lower ones with the same priority.
curl \
-X POST https://voice.twilio.com/v1/ConnectionPolicies/{ConnectionPolicySid}/Targets \
--user "username:password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'Enabled=true&FriendlyName=string&Priority=42&Target=https%3A%2F%2Fexample.com&Weight=42'
{
"Enabled": true,
"FriendlyName": "string",
"Priority": 42,
"Target": "https://example.com",
"Weight": 42
}
{
"Enabled": true,
"FriendlyName": "string",
"Priority": 42,
"Target": "https://example.com",
"Weight": 42
}
{
"account_sid": "string",
"connection_policy_sid": "string",
"date_created": "2023-05-04T09:42:00+00:00",
"date_updated": "2023-05-04T09:42:00+00:00",
"enabled": true,
"friendly_name": "string",
"priority": 42,
"sid": "string",
"target": "https://example.com",
"url": "https://example.com",
"weight": 42
}
{
"account_sid": "string",
"connection_policy_sid": "string",
"date_created": "2024-05-04T09:42:00+00:00",
"date_updated": "2024-05-04T09:42:00+00:00",
"enabled": true,
"friendly_name": "string",
"priority": 42,
"sid": "string",
"target": "https://example.com",
"url": "https://example.com",
"weight": 42
}