Click HERE to see how Saviynt Intelligence is transforming the industry. |
09/06/2023 07:27 AM - last edited on 09/06/2023 10:29 AM by Dave
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.]
09/11/2023 10:48 PM
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.
09/12/2023 05:45 AM
Can you Add {"showLogs":true} against ConfigJSON param in your connection to print additional logs.