Read an invoice
Reads a single invoice record from the Invoices table by specifying the Id. This example demonstrates how to filter results to a specific invoice using the WHERE clause.
SELECT * FROM Invoices
WHERE Id = 'abc'
Reads a single invoice record from the Invoices table by specifying the Id. This example demonstrates how to filter results to a specific invoice using the WHERE clause.
SELECT * FROM Invoices
WHERE Id = 'abc'