Create a twinning for a user (user)
Create a twinning for the given user. The user_id is taken from the path
and the sync_source is always set to manual server-side; neither may be
supplied in the request body.
Whether phone_number is required depends on the combination of type and
dial_strategy (for example, a voip_only mobile twinning does not require
a phone number). A user may hold at most one teams-type twinning and at
most one voip_only twinning. backup_phone_number is only accepted when
fmc_enabled is true and the twinning is FMC-eligible (mobile type).
User bearer token. Default authentication for customer-facing endpoints.
Obtain a token by calling POST /login with your credentials, then send it
on every subsequent request as Authorization: Bearer <token>. The token
inherits the permissions and PBX scope of the authenticated user.
- HTTP Authorization Scheme
bearer- Bearer format
Bearer <token>
application/jsonRequest body · required
enabled disabledenabled+121255501005mobile teamsmobilegsm_only voip_only voip_and_gsm_fallbackvoip_and_gsm_fallbackResponses
dataobject
550e8400-e29b-41d4-a716-446655440000550e8400-e29b-41d4-a716-446655440001enabled disabledenabled+121255501005manual provision legacy_importmanualmobile teamsmobilegsm_only voip_only voip_and_gsm_fallbackvoip_and_gsm_fallback+121255501012024-03-01T08:29:07Z2024-03-01T08:29:07ZAuthorization Token is missingmessagearray<string>
The given data was invalid.errorsobject
filterarray<string>
sortarray<string>
pagearray<string>
per_pagearray<string>
https://cockpit.voxbi.com/api/v1/users/{user}/twinnings
curl -X POST 'https://cockpit.voxbi.com/api/v1/users/{user}/twinnings' \
-H 'Authorization: Bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
--data '{"status":"enabled","phone_number":"+12125550100","delay":5,"type":"mobile","dial_strategy":"voip_and_gsm_fallback","fmc_enabled":false,"backup_phone_number":null}'
const response = await fetch('https://cockpit.voxbi.com/api/v1/users/{user}/twinnings', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${YOUR_TOKEN}`,
},
body: JSON.stringify({
"status": "enabled",
"phone_number": "+12125550100",
"delay": 5,
"type": "mobile",
"dial_strategy": "voip_and_gsm_fallback",
"fmc_enabled": false,
"backup_phone_number": null
}),
});
const data = await response.json();
console.log(data);
import requests
response = requests.post('https://cockpit.voxbi.com/api/v1/users/{user}/twinnings',
headers={'Authorization': f'Bearer {YOUR_TOKEN}'},
json={
"status": "enabled",
"phone_number": "+12125550100",
"delay": 5,
"type": "mobile",
"dial_strategy": "voip_and_gsm_fallback",
"fmc_enabled": false,
"backup_phone_number": null
}
)
response.raise_for_status()
data = response.json()
print(data)
<?php
$context = stream_context_create([
'http' => [
'method' => 'POST',
'header' => "Content-Type: application/json\r\nAuthorization: Bearer YOUR_TOKEN",
'content' => '{
\"status\": \"enabled\",
\"phone_number\": \"+12125550100\",
\"delay\": 5,
\"type\": \"mobile\",
\"dial_strategy\": \"voip_and_gsm_fallback\",
\"fmc_enabled\": false,
\"backup_phone_number\": null
}',
],
]);
$response = file_get_contents('https://cockpit.voxbi.com/api/v1/users/{user}/twinnings', false, $context);
$data = json_decode($response, true);
print_r($data);
{ … }
{ … }
"data": { … }
{ … }
private, must-revalidatekeep-aliveapplication/jsonOrigin6057{ … }
"message": [ … ]
private, must-revalidatekeep-aliveapplication/jsonOrigin6057{ … }
"errors": { … }
"filter": [ … ],
"sort": [ … ],
"page": [ … ],
"per_page": [ … ]
private, must-revalidatekeep-aliveapplication/jsonOrigin6057