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

async function main() {
    const client = new ManagementClient({
        token: "<token>",
    });
    await client.prompts.partials.get("login");
}
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

レスポンス

Prompt partials successfully retrieved.

An object containing template partials for a group of screens.