Management API
TypeScript
import { ManagementClient } from "auth0"; async function main() { const client = new ManagementClient({ token: "<token>", }); await client.branding.phone.providers.list({ disabled: true, }); } main();
{ "providers": [ { "name": "twilio", "id": "<string>", "tenant": "<string>", "channel": "phone", "disabled": true, "configuration": { "sid": "<string>", "delivery_methods": [ "text" ], "default_from": "<string>", "mssid": "<string>" }, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ] }
Retrieve a list of phone providers details set for a Tenant. A list of fields to include or exclude may also be specified.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Whether the provider is enabled (false) or disabled (true).
Phone providers have been successfully retrieved.
Show child attributes