//native
type Foxentry = {
apiKey: string;
};
/**
* Get company data
* Foxentry allows you to get information about company based on the dataScope option. Country and registrationNumber parameters are required.
*/
export async function main(
auth: Foxentry,
api_version: string | undefined,
foxentry_include_request_details: string | undefined,
body: {
request: {
customId?: string;
query: { country: string; registrationNumber: string };
options?: {
dataScope?: "basic" | "extended" | "full";
dataSource?: string[];
includeTerminatedSubjects?: false | true;
zipFormat?: false | true;
cityFormat?: "basic" | "extended" | "minimal";
countryFormat?:
| "alpha2"
| "alpha3"
| "local"
| "localShortened"
| "international"
| "internationalShortened";
legalFormType?: "juridical" | "physical" | "any";
};
client?: {
ip?: string;
country?: string;
location?: { lat?: number; lon?: number };
};
};
},
) {
const url = new URL(`https://api.foxentry.com/company/get`);
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