Request
string
required
The invoice ID to fetch.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
const { result, error } = await unprice.invoices.get({
invoiceId: "inv_1234567890"
});
if (error) {
console.error(error.message);
return;
}
console.log(result);
{
"invoice": {
"id": "inv_1234567890",
"status": "paid",
"currency": "USD",
"gross_amount": 100000000,
"amount_due": 0,
"amount_paid": 100000000,
"amount_included": 0
},
"lines": []
}
Get an invoice with projected line items
const { result, error } = await unprice.invoices.get({
invoiceId: "inv_1234567890"
});
if (error) {
console.error(error.message);
return;
}
console.log(result);
{
"invoice": {
"id": "inv_1234567890",
"status": "paid",
"currency": "USD",
"gross_amount": 100000000,
"amount_due": 0,
"amount_paid": 100000000,
"amount_included": 0
},
"lines": []
}
const { result, error } = await unprice.invoices.get({
invoiceId: "inv_1234567890"
});
if (error) {
console.error(error.message);
return;
}
console.log(result);
{
"invoice": {
"id": "inv_1234567890",
"status": "paid",
"currency": "USD",
"gross_amount": 100000000,
"amount_due": 0,
"amount_paid": 100000000,
"amount_included": 0
},
"lines": []
}