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!