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.
Management API
C#
using Auth0.ManagementApi; using System.Threading.Tasks; using Auth0.ManagementApi.Branding.Phone; public partial class Examples { public async Task Example() { var client = new ManagementClient( token: "<token>" ); await client.Branding.Phone.Templates.ListAsync( new ListPhoneTemplatesRequestParameters { Disabled = true } ); } }
{ "templates": [ { "content": { "syntax": "<string>", "from": "<string>", "body": { "text": "<string>", "voice": "<string>" } }, "disabled": false, "id": "<string>", "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