0
votes

I am trying to reach RSA Archer backend from a newly created application, for example update existed records and create new records.

As a workaround, I have tried to create Custom Object and implement a JavaScript snippet to fetch existed users by calling RSA Archer RESTful API.

Also, I also found RSA Archer blocked me (403 Forbidden Error) from creating and updating records when I was using JavaScript code in Custom Object to perform these operations.

I am wondering if RSA Archer has such integrated functionality that I can perform records manipulation (i.e fetch, update, create and delete) from the Applications, Solutions or Workspace. Any good ideas that I can connect workspace application to Archer backend would be appreciated.

1

1 Answers

0
votes

When you are doing a POST via the REST APIs within Archer you need to add the following header. 'x-csrf-token': (window.sessionStorage) ? window.sessionStorage.getItem("x-csrf-token") : parent.parent.ArcherApp.globals['xCsrfToken']