Passer au contenu principal
POST
/
custom-domains
/
{id}
/
test
TypeScript
import { ManagementClient } from "auth0";

async function main() {
    const client = new ManagementClient({
        token: "<token>",
    });
    await client.customDomains.test("id");
}
main();
{
  "success": true,
  "message": "<string>"
}

Autorisations

Authorization
string
header
requis

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

Paramètres de chemin

id
string
requis

ID of the custom domain to test.

Réponse

Custom domain test successfully completed.

success
boolean
requis

Result of the operation.

message
string

Message describing the operation status.