• requesting additional fields in ProductTemplates/GET

    Currently I am trying to export a JSON file of all my products from Product Templates using the following Endpoint , I do receive the basic parameters expected which is ID, Data, state and index. My products contain additional fields like Price, quantity…
  • How can I retrieve fields from related records in a REST filter POST request?

    I'm using the filter endpoint to retrieve some fields from matching Contacts. Specifically I'm doing a POST to the {URL}/rest/v11/Contacts/filter endpoint. In the body I include the fields as follows: "fields": "id,name,description" That works great.…
  • How to pass filter param as query string for GET

    Environment: C# (asp.net 2.0 framework), REST V10. since passing parameter as body is not supported in WebRequest for GET method, I am try to pass parameters as query string. I can successfully pass order_by, fields and other parameters But not successful…