Patch Telephony Account
curl --request PATCH \
--url https://api.in.talqing.com/v1/telephony/accounts/{account_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"account_info": {},
"console_setup_confirmed": true,
"credentials": {},
"display_name": "<string>"
}
'import requests
url = "https://api.in.talqing.com/v1/telephony/accounts/{account_id}"
payload = {
"account_info": {},
"console_setup_confirmed": True,
"credentials": {},
"display_name": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
account_info: {},
console_setup_confirmed: true,
credentials: {},
display_name: '<string>'
})
};
fetch('https://api.in.talqing.com/v1/telephony/accounts/{account_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.in.talqing.com/v1/telephony/accounts/{account_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'account_info' => [
],
'console_setup_confirmed' => true,
'credentials' => [
],
'display_name' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.in.talqing.com/v1/telephony/accounts/{account_id}"
payload := strings.NewReader("{\n \"account_info\": {},\n \"console_setup_confirmed\": true,\n \"credentials\": {},\n \"display_name\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.in.talqing.com/v1/telephony/accounts/{account_id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"account_info\": {},\n \"console_setup_confirmed\": true,\n \"credentials\": {},\n \"display_name\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.in.talqing.com/v1/telephony/accounts/{account_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"account_info\": {},\n \"console_setup_confirmed\": true,\n \"credentials\": {},\n \"display_name\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"account_info": {},
"created_at": "2023-11-07T05:31:56Z",
"credentials": {},
"display_name": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"last_synced_at": "2023-11-07T05:31:56Z",
"provider": "plivo",
"provider_state": {},
"setup_complete": true,
"setup_steps": [
{
"detail": "<string>",
"doc_label": "<string>",
"doc_url": "<string>",
"done": false,
"instructions": [
{
"copy_hint": "<string>",
"copy_value": "<string>",
"text": "<string>",
"url": "<string>",
"url_label": "<string>"
}
],
"key": "<string>",
"title": "<string>",
"user_confirmable": false
}
],
"status": "pending",
"status_message": "<string>",
"transfer_transport": "refer",
"updated_at": "2023-11-07T05:31:56Z"
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}telephony
Patch Telephony Account
Update a carrier account: rename it, replace credentials, or disable it.
Only the fields you send change. status accepts disabled to stop the
account and connected to re-enable it. Set console_setup_confirmed when
the user says they have finished the carrier-console steps — no API can
verify that work, and inbound calling on this account’s numbers stays
blocked until they confirm.
PATCH
/
v1
/
telephony
/
accounts
/
{account_id}
Patch Telephony Account
curl --request PATCH \
--url https://api.in.talqing.com/v1/telephony/accounts/{account_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"account_info": {},
"console_setup_confirmed": true,
"credentials": {},
"display_name": "<string>"
}
'import requests
url = "https://api.in.talqing.com/v1/telephony/accounts/{account_id}"
payload = {
"account_info": {},
"console_setup_confirmed": True,
"credentials": {},
"display_name": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
account_info: {},
console_setup_confirmed: true,
credentials: {},
display_name: '<string>'
})
};
fetch('https://api.in.talqing.com/v1/telephony/accounts/{account_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.in.talqing.com/v1/telephony/accounts/{account_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'account_info' => [
],
'console_setup_confirmed' => true,
'credentials' => [
],
'display_name' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.in.talqing.com/v1/telephony/accounts/{account_id}"
payload := strings.NewReader("{\n \"account_info\": {},\n \"console_setup_confirmed\": true,\n \"credentials\": {},\n \"display_name\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.in.talqing.com/v1/telephony/accounts/{account_id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"account_info\": {},\n \"console_setup_confirmed\": true,\n \"credentials\": {},\n \"display_name\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.in.talqing.com/v1/telephony/accounts/{account_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"account_info\": {},\n \"console_setup_confirmed\": true,\n \"credentials\": {},\n \"display_name\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"account_info": {},
"created_at": "2023-11-07T05:31:56Z",
"credentials": {},
"display_name": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"last_synced_at": "2023-11-07T05:31:56Z",
"provider": "plivo",
"provider_state": {},
"setup_complete": true,
"setup_steps": [
{
"detail": "<string>",
"doc_label": "<string>",
"doc_url": "<string>",
"done": false,
"instructions": [
{
"copy_hint": "<string>",
"copy_value": "<string>",
"text": "<string>",
"url": "<string>",
"url_label": "<string>"
}
],
"key": "<string>",
"title": "<string>",
"user_confirmable": false
}
],
"status": "pending",
"status_message": "<string>",
"transfer_transport": "refer",
"updated_at": "2023-11-07T05:31:56Z"
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}Authorizations
BearerAuthSessionCookie
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/json
Response
Successful Response
Available options:
plivo, exotel, vobiz, twilio Show child attributes
Show child attributes
Available options:
pending, connected, provisioning, ready, error, disabled Available options:
refer, bridge