api

Execute raw Jira REST API calls with specified HTTP methods and JSON bodies.

46|12|Updated Apr 15, 2026
One-click install
npx skills add https://github.com/mulhamna/jira-commands --skill api-mulhamna
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: api
Source: https://github.com/mulhamna/jira-commands/tree/main/plugin/skills/api
Command: npx skills add https://github.com/mulhamna/jira-commands --skill api-mulhamna

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It eliminates the guesswork of building manual Jira REST requests by letting you execute the exact endpoint you need with the correct HTTP method and (when required) JSON payload.

Core Features & Use Cases

  • Raw endpoint execution: Run GET, POST, PUT, DELETE, and PATCH against any Jira REST path.
  • JSON request bodies: Send structured JSON payloads for create/update workflows.
  • Response visibility for troubleshooting: Get the Jira response clearly so you can validate results or debug failures.

Quick Start

Tell the AI exactly which Jira REST endpoint and method you want, and include any JSON body needed for the request.

Frequently Asked Questions about api

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I call a Jira REST API endpoint without writing curl commands manually?

You can call any Jira REST API endpoint by specifying the HTTP method, REST path, and optional JSON body to the CLI, which executes the request and returns the Jira response without manual curl crafting.

What HTTP methods can I use for Jira REST API CRUD operations?

Jira REST API CRUD operations support GET, POST, PUT, DELETE, and PATCH methods, allowing you to retrieve, create, update, or delete Jira issues and projects through CLI automation.

How do I send a JSON payload when creating or updating Jira issues via REST?

You provide a structured JSON payload alongside the selected HTTP method and REST path to execute create or update workflows against Jira endpoints, receiving the API response for validation.

Can I debug Jira REST endpoint failures and view the raw API response?

Debugging Jira REST endpoints returns the raw API response clearly, letting you validate results or troubleshoot failures by inspecting the exact output from the executed REST path.

Do I need to know the exact Jira REST path to perform issue management tasks?

Yes, performing issue management tasks requires specifying the exact Jira REST path and selecting the appropriate HTTP method so the CLI can route the call through the correct subcommands.

What's the best way to integrate Jira API actions into ad-hoc workflows?

Integrating Jira API actions into ad-hoc workflows is done by executing raw REST endpoint calls with the required HTTP method and JSON body, returning structured responses for downstream processing.