//native
type Foxentry = {
apiKey: string;
};
/**
* Validate phone number
* Foxentry allows you to check validity and the existence of phone numbers.
*/
export async function main(
auth: Foxentry,
api_version: string | undefined,
foxentry_include_request_details: string | undefined,
body: {
request: {
customId?: string;
query: { prefix: string; number: string } | { numberWithPrefix: string };
options?: {
validationType?: "basic" | "extended";
allowedPrefixes?: string[];
preferredPrefixes?: string[];
defaultPrefix?: string;
formatNumber?: false | true;
};
client?: {
ip?: string;
country?: string;
location?: { lat?: number; lon?: number };
};
};
},
) {
const url = new URL(`https://api.foxentry.com/phone/validate`);
const headers: Record<string, string> = {
"Content-Type": "application/json",
Authorization: "Bearer " + auth.apiKey,
};
if (api_version) {
headers["api-version"] = api_version;
}
if (foxentry_include_request_details) {
headers["foxentry-include-request-details"] = foxentry_include_request_details;
}
const response = await fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 428 days ago