Browse By Tags

  • Authenticating in OAuth 2.0 with Aras RESTful API

    In our previous blogs posts we covered a range of topics on setting up REST calls, including querying part data, adding filters for more complex queries, and calling server-side methods. Since those posts Aras Innovator has changed quite a bit and in…
  • Server Side Methods with the Aras RESTful API

    In previous blog posts, we have covered topics regarding the use of the REST API to request tokens for authentication and querying simple / more complex data . In this blog post, we will dive into server methods as OData actions through a POST request…
  • How to return JSON from a odata method

    Hi, I created a a serveur method named COCO_MONITORING returning a JSON like this var innovator = this.getInnovator(); var output= new Newtonsoft.Json.Linq.JObject(); .... return innovator.newResult(output.ToString(Newtonsoft.Json.Formatting.None…
  • How is the AML saved in the database ?

    Is it converted into Sql insert statement. I would also like to know about Odata, how is it implemented in ARAS?
  • Complex Filters with the Aras RESTful API

    In a previous blog post, we covered the basics of querying data in Aras Innovator using the Aras RESTful API . One of the examples covered in that blog post went over how to perform a simple filter to find items that had a specific property value. While…