//native
type Zoho = {
token: string;
};
/**
* List contacts
* List all contacts with pagination.
*/
export async function main(
auth: Zoho,
organization_id: string | undefined,
contact_name: string | undefined,
company_name: string | undefined,
first_name: string | undefined,
last_name: string | undefined,
address: string | undefined,
email: string | undefined,
phone: string | undefined,
filter_by: string | undefined,
search_text: string | undefined,
sort_column: string | undefined,
) {
const url = new URL(`https://www.zohoapis.com/inventory/v1/contacts`);
for (const [k, v] of [
["organization_id", organization_id],
["contact_name", contact_name],
["company_name", company_name],
["first_name", first_name],
["last_name", last_name],
["address", address],
["email", email],
["phone", phone],
["filter_by", filter_by],
["search_text", search_text],
["sort_column", sort_column],
]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Zoho-oauthtoken " + auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 235 days ago