Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/dishant0406/quickleap/llms.txt

Use this file to discover all available pages before exploring further.

Endpoint

POST /verify-domain

Function signature

export const verifyStatus = async (domain: string): Promise<AxiosResponse>

Request body

domain
string
required
The domain to be verified

Response

status
number
HTTP status code
data
object
Verification results object

Code example

import { verifyStatus } from '@/lib/api';

const checkDomainStatus = async (domain: string) => {
  const response = await verifyStatus(domain);
  
  if (response.data.verified) {
    console.log(`${domain} is properly configured`);
  } else {
    console.log(`Configuration issues found:`, response.data.errors);
  }
  
  return response.data;
};
Domain verification checks DNS records to ensure the domain is properly configured to work with Quickleap. This process may take a few minutes after DNS changes are made.

Common verification issues

Error responses

Build docs developers (and LLMs) love