provider Issue notification schemes GET
/rest/api/3/notificationscheme/project @utdk/jira
/rest/api/3/notificationscheme/project Get projects using notification schemes paginated
Returns a [paginated](#pagination) mapping of project that have notification scheme assigned. You can provide either one or multiple notification scheme IDs or project IDs to filter by. If you don't provide any, this will return a list of all mappings. Note that only company-managed (classic) projects are supported. This is because team-managed projects don't have a concept of a default notification scheme. The mappings are ordered by projectId.
**[Permissions](#permissions) required:** Permission to access Jira.
- 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
- notificationSchemeId query
- The list of notifications 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.getnotificationschemetoprojectmappings({
"startAt": "0",
"maxResults": "50"
})