I need to get a list of suppliers and their related fields, for example: Payterm
I can get a list of suppliers using SuppliersHandling (plural):
SuppliersHandling.svc/SupplierInfoGeneralSet
But that will give me a list with just a set of basic fields not including Payterm
I can get the related Payterm by going into each supplier individually with SupplierHandling.svc (singular) and expanding on PayTermIdRef
SupplierHandling.svc/SupplierInfoGeneralSet(SupplierId='11252')/SupplierInvoiceCompanies?$expand=PayTermIdRef($select=Description,Objgrants,luname,keyref)
But I can’t do that individually for each supplier
Is there a way to get a list of suppliers including the related Payterm field?
