query_assignable
Retrieve assignable users for a Jira ticket by specifying the project key, enabling efficient task allocation and management using the /rest/api/3/user/assignable/search API.
Instructions
Query assignables to a ticket on Jira on the api /rest/api/3/user/assignable/search?project={project-name}. Do not use markdown in your query.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_key | Yes | The id of the project to search |
Input Schema (JSON Schema)
{
"properties": {
"project_key": {
"description": "The id of the project to search",
"type": "string"
}
},
"required": [
"project_key"
],
"type": "object"
}