PARTNERS - Please join us for our upcoming webinar:
Leveraging Intelligent Recommendations for Operational Transformation.
AMS Partners click HERE | EMEA/APJ Partners click HERE

Jira Connector Remove Access JSON

Saviynt_Savvy
Regular Contributor
Regular Contributor

The Remove Access is not getting completed.
What is the error in the below Remove Access JSON of Jira Connector:
{
"call": [
{
"name": "Groups",
"connection": "acctAuth",
"url": "https://xxxxxxxx.atlassian.net/rest/api/3/group/user?groupname=${entitlementValue.entitlementID.repl...(' ','%20')}&accountId=${account.accountID}",
"httpMethod": "DELETE",
"httpParams": "{}",
"httpHeaders": {
"Authorization": "${access_token}",
"Accept": "application/json"
},
"httpContentType": "application/json",
"successResponses": {
"statusCode": [
200,
201,
204
]
}
}
]
}

 

[This post has been edited by a Moderator to remove sensitive information.]

2 REPLIES 2

sudeshjaiswal
Saviynt Employee
Saviynt Employee

Hello @Saviynt_Savvy,

Are you seeing any error in the logs,

Please use the below sampel json as given in the document and modify accordingly,

{
"call": [
{
"name": "Groups",
"connection": "acctAuth",
"url": "https://<<hostname>>/PasswordVault/api/UserGroups/${entitlementValue.entitlementID}/Members/${account.name}",
"httpMethod": "DELETE",
"httpParams": "{}",
"httpHeaders": {
"Authorization": "${access_token}",
"Accept": "application/json"
},
"httpContentType": "application/json",
"successResponses": {
"statusCode": [
200,
201,
204
]
}
},
{
"name": "Safes",
"connection": "acctAuth",
"url": "https://<<hostname>>/PasswordVault/api/Safes/${entitlementValue.entitlementID}/Members/${account.name}",
"httpMethod": "DELETE",
"httpParams": "{}",
"httpHeaders": {
"Authorization": "${access_token}",
"Accept": "application/json"
},
"httpContentType": "application/json",
"successResponses": {
"statusCode": [
200,
201,
204
]
}
}
]
}

For Ref:- 
https://docs.saviyntcloud.com/bundle/Atlassian-v23x/page/Content/Understanding-the-Integration-Betwe... 
Thanks.

If you find the above response useful, Kindly Mark it as "Accept As Solution".

Manu269
All-Star
All-Star

Can you Add {"showLogs":true} against ConfigJSON param in your connection to print additional logs.

Regards
Manish Kumar
If the response answered your query, please Accept As Solution and Kudos
.