メインコンテンツへスキップ
DELETE
https://{tenantDomain}/api/v2
/
clients
/
{client_id}
/
credentials
/
{credential_id}
Go
package example

import (
    context "context"

    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>",
        ),
    )
    client.Clients.Credentials.Delete(
        context.TODO(),
        "client_id",
        "credential_id",
    )
}

承認

Authorization
string
header
必須

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

パスパラメータ

client_id
string
必須

クライアントの ID。

credential_id
string
必須

削除する認証情報の ID。

レスポンス

認証情報が正常に削除されました。