Summary of API Endpoints

I am new to the Quantify API. It would be helpful to know how to access data for all relevant endpoints so I can export it to a file. Could I get a list of the endpoints and what method in C# can be used to access the data?

Example:
Object: Invoices
Example Function: InvoiceCollection.GetInvoiceCollection();

Object: Product
Example Function: ProductList.GetProductList(ProductType.Product);

Object: JobSites
Example Function: <fill_me_in>

… Continued for all other objects (Customer, Shipment, Location, etc.)

Additionally, is there a method to export all fields from an object (e.g. something like invoices.GetAll() instead of explicitly typing out each field separately like invoiceNumber = inv.InvoiceNumber)?

Thanks for the support!

Hello serickson. You’ll want to use the object browser within Visual Studio for this. Simply select the Avontus.Rental.Library.dll and you can see all of the namespaces, methods, properties, etc.

image