//native
type Square = {
token: string;
};
/**
* ListBookings
* Retrieve a collection of bookings.
To call this endpoint with buyer-level permissions, set `APPOINTMENTS_READ` for the OAuth scope.
To call this endpoint with seller-level permissions, set `APPOINTMENTS_ALL_READ` and `APPOINTMENTS_READ` for the OAuth scope.
*/
export async function main(
auth: Square,
limit: string | undefined,
cursor: string | undefined,
customer_id: string | undefined,
team_member_id: string | undefined,
location_id: string | undefined,
start_at_min: string | undefined,
start_at_max: string | undefined,
) {
const url = new URL(`https://connect.squareup.com/v2/bookings`);
for (const [k, v] of [
["limit", limit],
["cursor", cursor],
["customer_id", customer_id],
["team_member_id", team_member_id],
["location_id", location_id],
["start_at_min", start_at_min],
["start_at_max", start_at_max],
]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Bearer " + 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