• REST API: The cloud instance is returning “500 Internal Server Error” when accessing the “/Employees GET” and “/Users GET” endpoints and specifying multiple fields via the “fields” URL parameter

    Only when accessing the “/Employees GET” and “/Users GET” endpoints and specifying almost all the available fields via the “fields” URL parameter, the server is responding with the “500 Internal Server Error”. No additional information is provided. …
  • Notes with single and multiple Attachments since version 10.3

    In Sugar versions lower than 10.3 each note could contain only one single attachment which is described in the note record and which is uploaded to the upload directory ($sugar_config[‘upload_dir’]), the file name is the same as the id of the note record…
  • REST API Filter for dates between

    I am trying to use a GET Request to pull back records where the Created Date is between 2 dates, however I keep getting the following error: "error": "invalid_parameter", "error_message": "$between requires an array with two values." my current request…
  • AJAX to Sugar REST blocked by CORS

    I tried sending an AJAX request with jQuery to a SugarCRM REST endpoint, but it was blocked by Cross Origin Resource Sharing and returned HTTP 404 along with an error. This is the AJAX request: $ . ajax ( { type : 'POST' , url : ' https://example.sugarinstance…
  • Cannot filter Users using Rest V10 filter API

    Hello Folks, I was recently using Sugar filter API to filter records from various modules by applying filters. It's working well with other modules but I am not able to get the correct result for Users module when trying to search with email address.…
  • 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…