Update Voice OUT Trunk
Description
Updates a Trunk.
Request
HTTP Method: PATCH
URI Path: /v3/voice_out_trunks/{id}
URI Query Parameters:
Name |
Type |
Is Required? |
Description |
---|---|---|---|
id |
|
Yes |
Unique ID identifier of Trunk. |
Data Attributes:
Name |
Type |
Nullable |
Is Required? |
Description |
---|---|---|---|---|
name |
|
No |
Yes |
The voice out trunk name. |
allowed_sip_ips |
Array of |
No |
Yes |
The allowed originating IPs. Array from 0 to 15 items: IP v4/v6 single or subnet. |
allowed_rtp_ips |
Array of |
Yes |
No |
The allowed RTP IPs. Array from 0 to 10 items: IP v4/v6 single or subnet. |
on_cli_mismatch_action |
|
No |
Yes |
Possible values are: send_original_cli - the system will pass the |
capacity_limit |
|
Yes |
No |
The capacity limit of the voice out trunk. Allowed values from 0 to 32767. |
allow_any_did_as_cli |
|
No |
No |
When set to |
status |
|
No |
No |
Can be either: Active or Blocked. If set to |
threshold_amount |
|
Yes |
No |
The outbound trunk 24 hour threshold limit. Can be from 0.0 to 100000.0. |
default_dst_action |
|
No |
No |
Can be either: allow_all or reject_all. |
dst_prefixes |
|
Yes |
No |
The allowed destination prefixes. |
media_encryption_mode |
|
No |
No |
Media encryption mode. |
callback_url |
|
Yes |
No |
Can be null or valid HTTP(s) URL. |
Request Body Object Relationships:
Title |
Type |
Description |
---|---|---|
dids |
The DID numbers if |
Examples
PATCH /v3/voice_out_trunks/457bf47d-446d-41cd-91c3-dfbda7bf0753 HTTP/1.1
Host: api.didww.com
Content-Type: application/vnd.api+json
Accept: application/vnd.api+json
Api-Key: [API token]
{
"data": {
"id": "457bf47d-446d-41cd-91c3-dfbda7bf0753",
"type": "voice_out_trunks",
"attributes": {
"name": "Outbound trunk 99",
"allowed_sip_ips": [
"192.168.1.1"
],
"on_cli_mismatch_action": "send_original_cli",
"capacity_limit": 300,
"allow_any_did_as_cli": false,
"status": "blocked",
"threshold_amount": "1000.0",
"default_dst_action": "allow_all",
"dst_prefixes": [
"23",
"45"
],
"media_encryption_mode": "disabled",
"allowed_rtp_ips": [
"192.168.1.1"
],
"force_symmetric_rtp": true,
"rtp_ping": true
}
}
}
curl -i -X PATCH https://api.didww.com/v3/voice_out_trunks/457bf47d-446d-41cd-91c3-dfbda7bf0753 -H "Accept: application/vnd.api+json" -H "Api-Key: [API token]" -H "Content-Type: application/vnd.api+json" --data-raw '{"data": {"attributes": {"allow_any_did_as_cli": false, "allowed_rtp_ips": ["192.168.1.1"], "allowed_sip_ips": ["192.168.1.1"], "capacity_limit": 300, "default_dst_action": "allow_all", "dst_prefixes": ["23", "45"], "force_symmetric_rtp": true, "media_encryption_mode": "disabled", "name": "Outbound trunk 99", "on_cli_mismatch_action": "send_original_cli", "rtp_ping": true, "status": "blocked", "threshold_amount": "1000.0"}, "id": "457bf47d-446d-41cd-91c3-dfbda7bf0753", "type": "voice_out_trunks"}}'
HTTP/1.1 200 OK
Content-Type: application/vnd.api+json
{
"data": {
"id": "457bf47d-446d-41cd-91c3-dfbda7bf0753",
"type": "voice_out_trunks",
"attributes": {
"allowed_sip_ips": [
"192.168.1.1/32"
],
"allowed_rtp_ips": [
"192.168.1.1/32"
],
"allow_any_did_as_cli": false,
"status": "blocked",
"on_cli_mismatch_action": "send_original_cli",
"name": "Outbound trunk 99",
"capacity_limit": 300,
"username": "91********",
"password": "zu********",
"created_at": "2022-05-10T18:59:28.875Z",
"threshold_reached": false,
"threshold_amount": "1000.0",
"media_encryption_mode": "disabled",
"default_dst_action": "allow_all",
"dst_prefixes": [
"23",
"45"
],
"force_symmetric_rtp": true,
"rtp_ping": true,
"callback_url": null
},
"relationships": {
"dids": {
"links": {
"self": "https://api.didww.com/v3/voice_out_trunks/457bf47d-446d-41cd-91c3-dfbda7bf0753/relationships/dids",
"related": "https://api.didww.com/v3/voice_out_trunks/457bf47d-446d-41cd-91c3-dfbda7bf0753/dids"
}
}
},
"meta": {
"spent_amount": "0.0"
}
},
"meta": {
"api_version": "2022-05-10"
}
}
PATCH /v3/voice_out_trunks/291ef437-8896-4834-b0c2-eefaa0bbde98 HTTP/1.1
Host: api.didww.com
Content-Type: application/vnd.api+json
Accept: application/vnd.api+json
Api-Key: [API token]
{
"data": {
"id": "291ef437-8896-4834-b0c2-eefaa0bbde98",
"type": "voice_out_trunks",
"attributes": {
"name": "Outbound trunk 99",
"allowed_sip_ips": [
"192.168.1.1"
],
"on_cli_mismatch_action": "send_original_cli",
"capacity_limit": 300,
"allow_any_did_as_cli": true,
"status": "blocked",
"threshold_amount": "1000.0",
"default_dst_action": "allow_all",
"dst_prefixes": [
"23",
"45"
],
"media_encryption_mode": "disabled",
"allowed_rtp_ips": [
"192.168.1.1"
],
"force_symmetric_rtp": true,
"callback_url": "http://example.com",
"rtp_ping": true
},
"relationships": {
"dids": {
"data": [
{
"type": "dids",
"id": "7a6c177d-a054-4c75-9b4c-b1596ed6fa25"
}
]
}
}
}
}
curl -i -X PATCH https://api.didww.com/v3/voice_out_trunks/291ef437-8896-4834-b0c2-eefaa0bbde98 -H "Accept: application/vnd.api+json" -H "Api-Key: [API token]" -H "Content-Type: application/vnd.api+json" --data-raw '{"data": {"attributes": {"allow_any_did_as_cli": true, "allowed_rtp_ips": ["192.168.1.1"], "allowed_sip_ips": ["192.168.1.1"], "callback_url": "http://example.com", "capacity_limit": 300, "default_dst_action": "allow_all", "dst_prefixes": ["23", "45"], "force_symmetric_rtp": true, "media_encryption_mode": "disabled", "name": "Outbound trunk 99", "on_cli_mismatch_action": "send_original_cli", "rtp_ping": true, "status": "blocked", "threshold_amount": "1000.0"}, "id": "291ef437-8896-4834-b0c2-eefaa0bbde98", "relationships": {"dids": {"data": [{"type": "dids", "id": "7a6c177d-a054-4c75-9b4c-b1596ed6fa25"}]}}, "type": "voice_out_trunks"}}'
HTTP/1.1 200 OK
Content-Type: application/vnd.api+json
{
"data": {
"id": "291ef437-8896-4834-b0c2-eefaa0bbde98",
"type": "voice_out_trunks",
"attributes": {
"allowed_sip_ips": [
"192.168.1.1/32"
],
"allowed_rtp_ips": [
"192.168.1.1/32"
],
"allow_any_did_as_cli": false,
"status": "blocked",
"on_cli_mismatch_action": "send_original_cli",
"name": "Outbound trunk 99",
"capacity_limit": 300,
"username": "e1********",
"password": "ke********",
"created_at": "2022-03-03T08:21:48.322Z",
"threshold_reached": false,
"threshold_amount": "1000.0",
"media_encryption_mode": "disabled",
"default_dst_action": "allow_all",
"dst_prefixes": [
"23",
"45"
],
"force_symmetric_rtp": true,
"rtp_ping": true,
"callback_url": "http://example.com"
},
"relationships": {
"dids": {
"links": {
"self": "https://api.didww.com/v3/voice_out_trunks/291ef437-8896-4834-b0c2-eefaa0bbde98/relationships/dids",
"related": "https://api.didww.com/v3/voice_out_trunks/291ef437-8896-4834-b0c2-eefaa0bbde98/dids"
}
}
},
"meta": {
"spent_amount": "0.0"
}
},
"meta": {
"api_version": "2022-05-10"
}
}
Other Responses
Code |
Success |
Description |
---|---|---|
404 |
No |
|
401 |
No |