CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/pages/api/v2/billing/get-invoices-and-receipts.ts
Views: 687
1
/*
2
Get invoices and receipts for the given user.
3
*/
4
5
import getInvoicesAndReceipts from "@cocalc/server/billing/get-invoices-and-receipts";
6
import getAccountId from "lib/account/get-account";
7
8
export default async function handle(req, res) {
9
try {
10
res.json(await get(req));
11
} catch (err) {
12
res.json({ error: `${err.message}` });
13
return;
14
}
15
}
16
17
async function get(req): Promise<object> {
18
const account_id = await getAccountId(req);
19
if (account_id == null) {
20
return {};
21
}
22
return await getInvoicesAndReceipts(account_id);
23
}
24
25