メインコンテンツへスキップ
PUT
/
prompts
/
{prompt}
/
partials
TypeScript
import { ManagementClient } from "auth0";

async function main() {
    const client = new ManagementClient({
        token: "<token>",
    });
    await client.prompts.partials.set("login", {
        "key": "value",
    });
}
main();

承認

Authorization
string
header
必須

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

パスパラメータ

prompt
enum<string>
必須

Name of the prompt.

利用可能なオプション:
login,
login-id,
login-password,
login-passwordless,
signup,
signup-id,
signup-password,
customized-consent,
passkeys

ボディ

An object containing template partials for a group of screens.

レスポンス

Template partials successfully updated.