The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Tasks by API using SSO in SharePoint

SharePoint Support
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 6, 2019

Our tenant has already been integrated as SSO with Jira. However, anyone can help me with the api call to get tasks for current logged in user from SharePoint.

 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Dario B
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
November 15, 2019

Hello @SharePoint Support ,

The easiest way to get all the tasks assigned to the current logged-in user is to call the REST API endpoint "Search for issues using JQL" and provide the below JQL either in the request body or as a url parameter (depending on whether you use the POST or GET method):

issuetype = Task AND assignee = currentUser()

 

For further details on this you may want to review the REST API documentation:

 

Also, if you are actually build an add-on or anything similar and you will need further help in doing so, you may want to refer to the resources listed in https://developer.atlassian.com/resources. 

Specifically:

 

I hope this helps.

 

Cheers,
Dario