Passer au contenu principal
PATCH
https://{tenantDomain}/api/v2
/
guardian
/
factors
/
duo
/
settings
Go
package example

import (
    context "context"

    client "github.com/auth0/go-auth0/management/management/client"
    duo "github.com/auth0/go-auth0/management/management/guardian/factors/duo"
    option "github.com/auth0/go-auth0/management/management/option"
)

func do() {
    client := client.NewClient(
        option.WithToken(
            "<token>",
        ),
    )
    request := &duo.UpdateGuardianFactorDuoSettingsRequestContent{}
    client.Guardian.Factors.Duo.Settings.Update(
        context.TODO(),
        request,
    )
}
import { ManagementClient } from "auth0";

async function main() {
const client = new ManagementClient({
token: "<token>",
});
await client.guardian.factors.duo.settings.update({});
}
main();
import { ManagementClient } from "auth0";

async function main() {
const client = new ManagementClient({
token: "<token>",
});
await client.guardian.factors.duo.settings.update({});
}
main();
curl --request PATCH \
--url https://{tenantDomain}/api/v2/guardian/factors/duo/settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ikey": "<string>",
"skey": "<string>",
"host": "<string>"
}
'
import requests

url = "https://{tenantDomain}/api/v2/guardian/factors/duo/settings"

payload = {
"ikey": "<string>",
"skey": "<string>",
"host": "<string>"
}
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/guardian/factors/duo/settings",
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([
'ikey' => '<string>',
'skey' => '<string>',
'host' => '<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;
}
HttpResponse<String> response = Unirest.patch("https://{tenantDomain}/api/v2/guardian/factors/duo/settings")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"ikey\": \"<string>\",\n \"skey\": \"<string>\",\n \"host\": \"<string>\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://{tenantDomain}/api/v2/guardian/factors/duo/settings")

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 \"ikey\": \"<string>\",\n \"skey\": \"<string>\",\n \"host\": \"<string>\"\n}"

response = http.request(request)
puts response.read_body
{
  "ikey": "<string>",
  "skey": "<string>",
  "host": "<string>"
}

Autorisations

Authorization
string
header
requis

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Corps

ikey
string
Maximum string length: 10000
skey
string<non-empty-string>
Maximum string length: 10000
host
string
Maximum string length: 10000

Réponse

DUO settings successfully updated.

ikey
string
Maximum string length: 10000
skey
string<non-empty-string>
Maximum string length: 10000
host
string
Maximum string length: 10000