Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

REST - API connection CCURE

gracieux12
New Contributor
New Contributor

I want to connect to  victor server which manages CCURE. Why this is failing ? I did remove the username, password and the host. I have uploaded also the documentation from CCURE .

 

$.ajax({
type: "GET",
url:
"http://localhost/CrossFireWebService/api/Authenticate/Login?userName=<user>&password=<passw
ord>&clientName=TestClient”,
dataType: JSON, // JSON or XML
crossDomain: true,
headers: {
'Access-Control-Expose-Headers' : 'session-id'
},
cache: false,
success: function (msg, status, jqXHR) {
var result = msg;
sessionID = jqXHR.getResponseHeader("session-id");
token = result;
}
});

 

I want to create a connection for this app to be a connected app in Savyint

6 REPLIES 6

gracieux12
New Contributor
New Contributor

I have attached the guidelines for API, but I am getting failures 

Please share saviynt connection json


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

I did share it previously . Here again : 

$.ajax({
type: "GET",
url:
"http://localhost/CrossFireWebService/api/Authenticate/Login?userName=<user>&password=<passw
ord>&clientName=TestClient”,
dataType: JSON, // JSON or XML
crossDomain: true,
headers: {
'Access-Control-Expose-Headers' : 'session-id'
},
cache: false,
success: function (msg, status, jqXHR) {
var result = msg;
sessionID = jqXHR.getResponseHeader("session-id");
token = result;
}
});

I remove the hostname , username and password

This is not saviynt connection json format


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

How can I test the json query to make sure they are working in Saviynt ?

Use REST connector 


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.