provider Issue security schemes GET
/rest/api/3/issuesecurityschemes/project @utdk/jira
/rest/api/3/issuesecurityschemes/project Get projects using issue security schemes
Returns a [paginated](#pagination) mapping of projects that are using security schemes. You can provide either one or multiple security scheme IDs or project IDs to filter by. If you don't provide any, this will return a list of all mappings. Only issue security schemes in the context of classic projects are supported. **[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg).
- startAt query
- The index of the first item to return in a page of results (page offset).
- string
- maxResults query
- The maximum number of items to return per page.
- string
- issueSecuritySchemeId query
- The list of security scheme IDs to be filtered out.
- array
- projectId query
- The list of project IDs to be filtered out.
- array
Try it
Authentication
Configure credentials for The Jira Cloud platform REST API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import jira from '@utdk/jira';
await jira.searchprojectsusingsecurityschemes({
"startAt": "0",
"maxResults": "50"
})