09/12/2023 02:36 AM
Hi,
We have a use case where the user was imported from Workday [HRMS] to Saviynt and we have the same user in the Jira application also.
Now we need to map the user's JIRA "account ID" to one of the User custom attributes in Saviynt.
What changes should we make to the below "Import User Json" in the JIRA REST Connector?
{
"connection": "acctAuth",
"successResponses": {
"statusCode": [
200,
201,
202,
203,
204,
205
]
},
"url": "https://xxxxxxxx.atlassian.net/rest/api/3/users.json",
"httpMethod": "GET",
"httpHeaders": {
"Authorization": "${access_token}"
},
"colsToPropsMap": {
"username": "displayName~#~char",
"customproperty1": "accountId~#~char"
}
}
09/12/2023 04:19 AM
The above colsToPropsMap is perfect, do you see any issues in this.
With this json from the target for all the users matching the custom property 1 will be updated to account id of the jira application
Thanks
Darshan