Get Project
Get information about a Jira project. This is useful for getting the project ID.
For more information on the API, see Get Project (opens in a new tab).
SDK Import:
from admyral.actions import get_jira_project
Arguments:
Argument Name | Description | Required |
---|---|---|
Project ID or Key project_id_or_key | The ID or the key of the project. | Yes |
Returns
A JSON object.
Required Secrets
Secret Placeholder | Description |
---|---|
JIRA_SECRET | Jira secret. See Jira setup |
SDK Example
get_jira_project(
project_id_or_key="SJ",
secrets={"JIRA_SECRET": "my_stored_jira_secret"}
)