provider Issues GET
/rest/api/3/issue/createmeta/{projectIdOrKey}/issuetypes/{issueTypeId} @utdk/jira
/rest/api/3/issue/createmeta/{projectIdOrKey}/issuetypes/{issueTypeId} Get create field metadata for a project and issue type id
Returns a page of field metadata for a specified project and issuetype id. Use the information to populate the requests in [ Create issue](#api-rest-api-3-issue-post) and [Create issues](#api-rest-api-3-issue-bulk-post).
This operation can be accessed anonymously.
**[Permissions](#permissions) required:** *Create issues* [project permission](https://confluence.atlassian.com/x/yodKLg) in the requested projects.
- projectIdOrKey path required
- The ID or key of the project.
- string
- issueTypeId path required
- The issuetype ID.
- string
- startAt query
- The index of the first item to return in a page of results (page offset).
- integer
- maxResults query
- The maximum number of items to return per page.
- integer
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.getcreateissuemetaissuetypeid({
"startAt": 0,
"maxResults": 50
})