Go
package example
import (
context "context"
phone "github.com/auth0/go-auth0/management/management/branding/phone"
client "github.com/auth0/go-auth0/management/management/client"
option "github.com/auth0/go-auth0/management/management/option"
)
func do() {
client := client.NewClient(
option.WithToken(
"<token>",
),
)
request := &phone.UpdatePhoneTemplateRequestContent{}
client.Branding.Phone.Templates.Update(
context.TODO(),
"id",
request,
)
}import { ManagementClient } from "auth0";
async function main() {
const client = new ManagementClient({
token: "<token>",
});
await client.branding.phone.templates.update("id", {});
}
main();import { ManagementClient } from "auth0";
async function main() {
const client = new ManagementClient({
token: "<token>",
});
await client.branding.phone.templates.update("id", {});
}
main();curl --request PATCH \
--url https://{tenantDomain}/api/v2/branding/phone/templates/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"content": {
"from": "<string>",
"body": {
"text": "<string>",
"voice": "<string>"
}
},
"disabled": false
}
'import requests
url = "https://{tenantDomain}/api/v2/branding/phone/templates/{id}"
payload = {
"content": {
"from": "<string>",
"body": {
"text": "<string>",
"voice": "<string>"
}
},
"disabled": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{tenantDomain}/api/v2/branding/phone/templates/{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([
'content' => [
'from' => '<string>',
'body' => [
'text' => '<string>',
'voice' => '<string>'
]
],
'disabled' => false
]),
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;
}HttpResponse<String> response = Unirest.patch("https://{tenantDomain}/api/v2/branding/phone/templates/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"content\": {\n \"from\": \"<string>\",\n \"body\": {\n \"text\": \"<string>\",\n \"voice\": \"<string>\"\n }\n },\n \"disabled\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{tenantDomain}/api/v2/branding/phone/templates/{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 \"content\": {\n \"from\": \"<string>\",\n \"body\": {\n \"text\": \"<string>\",\n \"voice\": \"<string>\"\n }\n },\n \"disabled\": false\n}"
response = http.request(request)
puts response.read_body{
"content": {
"syntax": "<string>",
"from": "<string>",
"body": {
"text": "<string>",
"voice": "<string>"
}
},
"disabled": false,
"id": "<string>",
"channel": "<string>",
"customizable": true,
"tenant": "<string>"
}Update a phone notification template
PATCH
https://{tenantDomain}/api/v2
/
branding
/
phone
/
templates
/
{id}
Go
package example
import (
context "context"
phone "github.com/auth0/go-auth0/management/management/branding/phone"
client "github.com/auth0/go-auth0/management/management/client"
option "github.com/auth0/go-auth0/management/management/option"
)
func do() {
client := client.NewClient(
option.WithToken(
"<token>",
),
)
request := &phone.UpdatePhoneTemplateRequestContent{}
client.Branding.Phone.Templates.Update(
context.TODO(),
"id",
request,
)
}import { ManagementClient } from "auth0";
async function main() {
const client = new ManagementClient({
token: "<token>",
});
await client.branding.phone.templates.update("id", {});
}
main();import { ManagementClient } from "auth0";
async function main() {
const client = new ManagementClient({
token: "<token>",
});
await client.branding.phone.templates.update("id", {});
}
main();curl --request PATCH \
--url https://{tenantDomain}/api/v2/branding/phone/templates/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"content": {
"from": "<string>",
"body": {
"text": "<string>",
"voice": "<string>"
}
},
"disabled": false
}
'import requests
url = "https://{tenantDomain}/api/v2/branding/phone/templates/{id}"
payload = {
"content": {
"from": "<string>",
"body": {
"text": "<string>",
"voice": "<string>"
}
},
"disabled": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{tenantDomain}/api/v2/branding/phone/templates/{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([
'content' => [
'from' => '<string>',
'body' => [
'text' => '<string>',
'voice' => '<string>'
]
],
'disabled' => false
]),
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;
}HttpResponse<String> response = Unirest.patch("https://{tenantDomain}/api/v2/branding/phone/templates/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"content\": {\n \"from\": \"<string>\",\n \"body\": {\n \"text\": \"<string>\",\n \"voice\": \"<string>\"\n }\n },\n \"disabled\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{tenantDomain}/api/v2/branding/phone/templates/{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 \"content\": {\n \"from\": \"<string>\",\n \"body\": {\n \"text\": \"<string>\",\n \"voice\": \"<string>\"\n }\n },\n \"disabled\": false\n}"
response = http.request(request)
puts response.read_body{
"content": {
"syntax": "<string>",
"from": "<string>",
"body": {
"text": "<string>",
"voice": "<string>"
}
},
"disabled": false,
"id": "<string>",
"channel": "<string>",
"customizable": true,
"tenant": "<string>"
}Autorisations
bearerAuthoAuth2ClientCredentials
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Paramètres de chemin
Required string length:
1 - 255Corps
application/jsonapplication/x-www-form-urlencoded
Réponse
The phone notification template was updated.
Show child attributes
Show child attributes
Options disponibles:
otp_verify, otp_enroll, change_password, blocked_account, password_breach Maximum string length:
255Whether the template is enabled (false) or disabled (true).
Required string length:
1 - 255Required string length:
1 - 255⌘I