For the complete documentation index, see llms-docs.txt or the site index llms.txt. Full docs corpus: llms-full-docs.txt. Prefer the markdown version of this page at /docs/api/domain/post-api-domain-v1verify-by-domain_id.md. Product capabilities: skill.md. Docs MCP: /docs/mcp. Site MCP: /mcp.

Verify Domain

POST
/api/domain/v1/verify/:domain_id
1import { Reloop } from "reloop-email";
2
3const reloop = new Reloop({ apiKey: "rl_123456789" });
4
5const { domain, domainError } = await reloop.domain.verify("dom_123456789");
6
7if (domainError) throw domainError;
8
9console.log(domain.id, domain.status);
1{
2 "id": "domain_123456789",
3 "status": "verifying"
4}

Path Parameters

domain_idstringRequired

Was this page helpful?