I'm having a problem with Web Api batch requests that I need to use because of long URLs: If I make a query using normal Web Api mode:
then both name and industrycode (option set) for accounts are returned. However, if I make this a batch request:
Request URL: https://XXXXXXX.crm4.dynamics.com/api/data/v8.2/$batch
Request Method: POST
--batch_AAA123 Content-Type: application/http Content-Transfer-Encoding:binary GET xxxxxxcrm4.dynamics.com/.../accounts HTTP/1.1
Authorization: Bearer XXXX
Accept: application/json
--batch_AAA123--
then only account name is returned and not the industrycode. How can I get the industrycode returned in batch mode? Is this a bug or a limitation in Web Api or am I just doing it wrong?
*This post is locked for comments