Hello Maziar,
I understand that you would like to return in a REST API all issues of your project board which is assigned to you. Is it correct?
Can you confirm if you are using JIRA Server or Cloud? If you are using JIRA Cloud, is it a Next-gen project or Classic?
Basically, you just would need to create a JQL query with your board filter (Click Board settings > General to see the filter) and add the parameter assignee = currentuser()
here's the structure of a Cloud REST API to return the issues assigned to you:
yourdomain.atlassian.net/rest/api/3/search?jql=assignee=currentuser()
For more information about JIRA Server and Cloud REST API, you can check the documentation below:
- JIRA CLOUD REST API - Search for issues using JQL (GET)
- JIRA SERVER REST API - Search for issues using JQL (GET)
Let me know if this information helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.