How can multiple fields in an Acumatica REST API call be expanded?
/entity/Default/17.200.001/Customer?$expand=Contacts
works, and
/entity/Default/17.200.001/Customer?$expand=Salespersons
works, but
/entity/Default/17.200.001/Customer?$expand=Contacts,Salespersons
does not, leaving neither of them expanded.
According to Acumatica documentation :
Integration->Working with the Contract-Based REST API->Parameters for Retrieving Records->$expand
they say they follow OData conventions (https://www.odata.org/documentation/odata-version-3-0/url-conventions/)
which I believe this request adheres to.
