Get Tasks by API using SSO in SharePoint

SharePoint Support 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

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

Suggest an answer

Log in or Sign up to answer