メインコンテンツへスキップ
PATCH
https://{tenantDomain}/api/v2
/
guardian
/
factors
/
duo
/
settings
Go
package example

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

func do() () {
    client := client.NewClient(
        option.WithToken(
            "<token>",
        ),
    )
    client.Guardian.Factors.Duo.Settings.Update(
        context.TODO(),
        &duo.UpdateGuardianFactorDuoSettingsRequestContent{},
    )
}
{
  "ikey": "<string>",
  "skey": "<string>",
  "host": "<string>"
}

承認

Authorization
string
header
必須

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

ボディ

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

レスポンス

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