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.
Community moderators have prevented the ability to post new answers.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.