//native
type Square = {
token: string;
};
/**
* ListTransactions
* Lists transactions for a particular location.
Transactions include payment information from sales and exchanges and refund
information from returns and exchanges.
Max results per [page](https://developer.squareup.com/docs/working-with-apis/pagination): 50
*/
export async function main(
auth: Square,
location_id: string,
begin_time: string | undefined,
end_time: string | undefined,
sort_order: "DESC" | "ASC" | undefined,
cursor: string | undefined,
) {
const url = new URL(
`https://connect.squareup.com/v2/locations/${location_id}/transactions`,
);
for (const [k, v] of [
["begin_time", begin_time],
["end_time", end_time],
["sort_order", sort_order],
["cursor", cursor],
]) {
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