Skip to main content
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>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

ID of the custom domain to test.

Response

Custom domain test successfully completed.

success
boolean
required

Result of the operation.

message
string

Message describing the operation status.