//native
type Yelp = {
apiKey: string;
};
/**
* Get Lead Events
* Returns the latest events belonging to a given Lead ID.
*/
export async function main(
auth: Yelp,
ID: string,
older_than_cursor: string | undefined,
newer_than_cursor: string | undefined,
limit: string | undefined,
) {
const url = new URL(`https://api.yelp.com/v3/leads//${ID}/events`);
for (const [k, v] of [
["older_than_cursor", older_than_cursor],
["newer_than_cursor", newer_than_cursor],
["limit", limit],
]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Bearer " + auth.apiKey,
},
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