Mapping logic of Atlassian Jira

Naz_A
New Contributor
New Contributor

Hello everybody!

We are configuring Jira connector per reconciliation ImportAccountEntJson, but we are lost. We know the logic of users-groups but we cannot understand the part of projects-users-roles as we want to connect also users and projects. if it is possible we want to connect also roles to users.

Can somebody help us with this logic? 

 

Thanks!

 

@nfraternali 

 

9 REPLIES 9

Ankyt19
Regular Contributor
Regular Contributor

Naz_A
New Contributor
New Contributor

https://hostname/rest/api/2/project/search only brings projects to Saviynt, but I want them to connect with the project members. as you see the last part of Json connects groups with users as when you enter the user's page you can see the groups of which they are a part. I want to do the same thing with the projects.

this is the json that i am working on, but I can't figure out the link  

//* acctEntParams": {
"connection": "acctAuth",
"entTypes": {
"Project": {
"call": {
"call1": {
"callOrder": 0,
"stageNumber": 0,
"processingType": "httpEntToAcct",
"http": {
"httpHeaders": {
"Authorization": "${access_token}",
"Accept": "application/json"
},
"url": "https://hostname/rest/api/2/project",
"httpContentType": "application/json",
"httpMethod": "GET"
},
"listField": "lead",
"entKeyField": "entitlementID",
"acctIdPath": "accountId",
"acctKeyField": "accountID", //

rushikeshvartak
All-Star
All-Star

You can map user with Project. Provided Atlassian having API. since its REST API connector

How can i do that? I am searching for that on Atlassian documentation but I couldn't find anything. Can you see the Json as well? I have posted that on the reply above.

but this is for cloud.. 

Technically it should same design. are you facing any challenges ?

Naz_A
New Contributor
New Contributor

Yes, in a way.. Now i can connect projects to users but I can't connect a specific project to the user. It is connecting all of the projects to a specific user(which I have chosen so it's ok). Here is the link:

//

                            "httpContentType": "application/json",
                            "httpMethod": "GET"
                        },
                        "listField": "actors",
                        "entKeyField": "entitlementID",
                        "acctIdPath": "name",
                        "acctKeyField": "name"                      
                    }//

I am searching a way to get all of the projects something like (project/{id}}. something to put in the {id}'s place. Do you have any ideas?