Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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>", ), ) request := map[string]any{ "key": "value", } client.Hooks.Secrets.Create( context.TODO(), "id", request, ) }
既存の Hook にシークレットを 1 つ以上追加します。キーがシークレット名であるキーと値のペアのオブジェクトを受け取ります。Hook には最大 20 個のシークレットを設定できます。
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
取得する Hook の id
値が文字列である必要があるキーと値のペアのハッシュマップ。
Hook シークレットが正常に追加されました。