jira_check_user_issues
Verify user project membership and retrieve assigned issues in Jira. Input project key, user name, and authentication details to manage issue tracking efficiently.
Instructions
Checks if a user is a member of a project and lists their assigned issues
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiToken | No | API token for Jira authentication | |
No | Email address associated with the Jira account | ||
jiraHost | No | The Jira host URL (e.g., 'your-domain.atlassian.net') | |
projectKey | Yes | The Jira project key (e.g., 'PROJECT') | |
userName | Yes | The display name of the user to check for in the project |
Input Schema (JSON Schema)
{
"properties": {
"apiToken": {
"default": "",
"description": "API token for Jira authentication",
"type": "string"
},
"email": {
"default": "",
"description": "Email address associated with the Jira account",
"type": "string"
},
"jiraHost": {
"default": "",
"description": "The Jira host URL (e.g., 'your-domain.atlassian.net')",
"type": "string"
},
"projectKey": {
"description": "The Jira project key (e.g., 'PROJECT')",
"type": "string"
},
"userName": {
"description": "The display name of the user to check for in the project",
"type": "string"
}
},
"required": [
"projectKey",
"userName"
],
"type": "object"
}