Hi community,
Is there a way to optimize the following REST request that gets a number of specific items?
https: // arasmagiccastle.com/test/server/odata/MagicItemType ?$ filter= serial_number eq '9879' or serial_number eq '678' or serial_number eq…
The internal reporting tool in Aras doesn't work for us therefore we have to use external tools.
I need to explode the BOM downwards for parts. Use this data in PowerBi to create reports. I have figured how get the BOM structure but it only gives level…
Aras RESTful API doesn't seem to implement OData $metadata. OData spec requires this, and my OData library is pretty useless without it. The manual claims "OData Interface exposes this metadata..." but I am not finding it. What am I missing?
Authenticating in OAuth 2.0 with Aras RESTful API
As per the above document, a valid ARAS server URL is of the pattern " https://<servername>/<web alias>/oauthserver/connect/authorize"
In the above pattern, can a valid ARAS server include a path parameter…
Hi,
I am using Release 15 and trying to GET all Properties of an Item using REST API with this request:
http://server/innovatorserver/server/odata/par('D193004BBD7D4EF390925A859A4E371D')
It does return all properties except the ones which are datatype…
Hello everyone. I'm using Aras 12SP09 and I'm working with the REST API.
I have an AML call that I would like to transform to a REST call, it is:
<Item type='Workflow' action='get' select='related_id(*)'> <source_id>UUID</source_id> <related_id condition…
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…
I have a request: .../server/odata/Part?$filter=(id eq '...' or id eq '...') and generation gt 0&$expand=created_by_id.
I'm trying to get more then one Part. One of them is an old version of another Part (thats why i'm using ' generation gt 0 ' filter…
Is it possible to send body with AML to rest api and get aml response?
I could create a method that accepts string and parse the aml and reply but not sure how that would apply on the rights (trying to get only the items the logged in user can see…
We have several server methods which expects custom attribute values using "getAttribute". While we can pass the property value in the API call, I am not sure how do we pass custom attribute values to the server method call??
In the Rest Api Document it says " Use the AML attributes pagesize=”1” and page=”1” to limit the number of items returned in the response" but when I put it in my request it gives me 501: Not Implemented error .My query looks like this localhost/.../Part…
Hello guys!
I'm working in an implementation in which I need to get the list of item types that are available in the Aras application and if possible with their relations, but for my case I need to get this list through the REST API.
I also need to…
I try the example mentioned here https://community.aras.com/b/english/posts/uploading-files-via-the-aras-innovator-rest-api .
However i get below error in Postman when i try to request token. I did add the values as "Formdata". We are using Aras 11…
Hello,
Consider the scenario
1. User A has locked the Document from Innovator GUI and edited Name property but did not Save, unlock and Close
2. Same user using REST API (through Postman, does not matter though) unlock the Item. Rest call as below…
Hello Aras Community Members
Does the ARAS REST API allow you to navigate the BOM structure, starting with a Part? For example, if I have a BOM structure as shown below, I would like to start with any Part in the structure and navigate down the BOM…
I have made some code changes client side and want the same changes in the other server, how can I make changes from Test Server to the Production Server?
Hi Community,
I try to do a couple of REST API calls via Windows Batch jobs. I successfully can call for a token and read data. But I somehow fail to build a simple POST action to add any kind of item.
Currently I try to add e.g. an user with this…
I wanted to make this as broad a title as possible. I'm shocked I can't find anything on this. I don't want to use the ID. Seems everything is bound to ID.
I just want to simply know, without use of ID, how a method can consume arguments? How to pass…
This is for the curious that learn by doing...
As admin add a Server Method in C#.
Name: _Hello_World
Content:
// Testing return to PostMan with route: /method._Hello_World
Innovator inn = this.getInnovator();
return inn.newResult("Hello World…
Activating features is covered on page 61/74 in this guide: https://www.aras.com/-/media/files/documentation/installation-and-configuration/en/12-0/aras-innovator-120--installation-guide.ashx
That's so clicky I can't help but think there has to be a…
I'm attempting to get a full part history (14 generations worth) of a part. I know the config_id is a value shared between all 14 parts; however, I can't seem to construct the REST call to return all 14 records using the config_id.
I get the config_id…
Hi everyone,
I recently read this excellent blog post about token authentication using the REST API for Innovator, and in it Christopher Gillis says that
' [c] urrently, I believe "password" is the only authentication type allows [sic] . Aras…
Hi,
I'm currently reading RESTful API document and I'm getting stuck rather quick.
host:port/.../Products
That's the example used in the document.
But if I install a clean aras 11 SP12, what would the url be, because there's no *.svc file located…