Management API
TypeScript
import { ManagementClient } from "auth0"; async function main() { const client = new ManagementClient({ token: "<token>", }); await client.branding.phone.templates.list({ disabled: true, }); } main();
{ "templates": [ { "id": "<string>", "content": { "syntax": "<string>", "from": "<string>", "body": { "text": "<string>", "voice": "<string>" } }, "type": "otp_verify", "disabled": false, "channel": "<string>", "customizable": true, "tenant": "<string>" } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Whether the template is enabled (false) or disabled (true).
The phone notification templates were retrieved.
Show child attributes