jira_get_create_issue_meta_fields
Fetches project and issue type field configurations to identify required custom fields and their IDs before creating an issue.
Instructions
Fetches the field configurations and custom fields for a specific project and issue type when creating an issue. Run this to discover the exact customfield_XXXXX IDs, their expected data types (e.g. string, number, array), and whether they are required before invoking jira_create_issue. This is a highly performant and granular alternative to the deprecated global getCreateMetadata endpoint. Official API Doc Link: https://developer.atlassian.net/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-createmeta-projectidorkey-issuetypes-issuetypeid-get
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| startAt | No | The index of the first item to return in a page of results (default is 0). | |
| maxResults | No | The maximum number of items to return per page (default is 50, maximum is 50). | |
| issueTypeId | Yes | The ID of the issue type (e.g., "10001"). These must be retrieved first by calling `jira_get_project_issue_types`. | |
| projectIdOrKey | Yes | The project ID or key (e.g., "10000" or "PROJ"). |