list_projects
Retrieve a specified number of Jira projects using the REST API endpoint /rest/api/3/project. Ideal for managing and organizing project data efficiently.
Instructions
List all the projects on Jira on the api /rest/api/3/project. Do not use markdown in your query.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
number_of_results | No | Number of results to return |
Input Schema (JSON Schema)
{
"properties": {
"number_of_results": {
"default": 1,
"description": "Number of results to return",
"type": "integer"
}
},
"type": "object"
}