Jira API endpoints for accessing Jira Cloud platform functionality.
API Documentation:
The Jira API provides comprehensive access to issues, projects, users, workflows, and other Jira resources.
Use the /jira/{target} endpoint to proxy requests to the Jira REST API.
Proxies requests to the Jira Cloud Platform REST API v3. The target parameter specifies the Jira API endpoint.
API Documentation: Jira Cloud Platform REST API v3
Examples:
/jira/rest/api/3/issue/ISSUE-123 - Get issue details/jira/rest/api/3/project - List projects/jira/rest/api/3/myself - Get current user infoForge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
RequiredRequest successfully proxied to Jira API
object
1
2
3
4
curl --request GET \
--url '{FORGE_EGRESS_PROXY_URL}/jira/{target}' \
--header 'Accept: application/json' \
--header 'forge-proxy-authorization: Forge as=app,id=invocation-123'Proxies PUT requests to the Jira Cloud Platform REST API v3. The target parameter specifies the Jira API endpoint.
API Documentation: Jira Cloud Platform REST API v3
Examples:
/jira/rest/api/3/issue/ISSUE-123 - Update issue/jira/rest/api/3/project/PROJECT-123 - Update projectForge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
Requiredstring
Generic request body
object
Request successfully proxied to Jira API
object
1
2
3
4
5
6
curl --request PUT \
--url '{FORGE_EGRESS_PROXY_URL}/jira/{target}' \
--header 'Accept: application/json' \
--header 'forge-proxy-authorization: Forge as=app,id=invocation-123' \
--header 'Content-Type: application/json' \
--data '{}'Proxies POST requests to the Jira Cloud Platform REST API v3. The target parameter specifies the Jira API endpoint.
API Documentation: Jira Cloud Platform REST API v3
Examples:
/jira/rest/api/3/issue - Create new issue/jira/rest/api/3/issue/ISSUE-123/comment - Add comment to issueForge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
Requiredstring
Generic request body
object
Request successfully proxied to Jira API
object
1
2
3
4
5
6
curl --request POST \
--url '{FORGE_EGRESS_PROXY_URL}/jira/{target}' \
--header 'Accept: application/json' \
--header 'forge-proxy-authorization: Forge as=app,id=invocation-123' \
--header 'Content-Type: application/json' \
--data '{}'Proxies DELETE requests to the Jira Cloud Platform REST API v3. The target parameter specifies the Jira API endpoint.
API Documentation: Jira Cloud Platform REST API v3
Examples:
/jira/rest/api/3/issue/ISSUE-123 - Delete issue/jira/rest/api/3/issue/ISSUE-123/comment/123 - Delete commentForge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
RequiredRequest successfully proxied to Jira API
object
1
2
3
4
curl --request DELETE \
--url '{FORGE_EGRESS_PROXY_URL}/jira/{target}' \
--header 'Accept: application/json' \
--header 'forge-proxy-authorization: Forge as=app,id=invocation-123'Proxies OPTIONS requests to the Jira Cloud Platform REST API v3. Used for CORS preflight requests and method discovery.
API Documentation: Jira Cloud Platform REST API v3
Forge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
RequiredRequest successfully proxied to Jira API
object
1
2
3
4
curl --request OPTIONS \
--url '{FORGE_EGRESS_PROXY_URL}/jira/{target}' \
--header 'Accept: application/json' \
--header 'forge-proxy-authorization: Forge as=app,id=invocation-123'Proxies HEAD requests to the Jira Cloud Platform REST API v3. Returns headers without response body, useful for checking resource existence.
API Documentation: Jira Cloud Platform REST API v3
Forge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
RequiredRequest successfully proxied to Jira API
object
1
2
3
4
curl --request HEAD \
--url '{FORGE_EGRESS_PROXY_URL}/jira/{target}' \
--header 'Accept: application/json' \
--header 'forge-proxy-authorization: Forge as=app,id=invocation-123'Proxies PATCH requests to the Jira Cloud Platform REST API v3. The target parameter specifies the Jira API endpoint.
API Documentation: Jira Cloud Platform REST API v3
Examples:
/jira/rest/api/3/issue/ISSUE-123 - Partially update issueForge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
Requiredstring
Generic request body
object
Request successfully proxied to Jira API
object
1
2
3
4
5
6
curl --request PATCH \
--url '{FORGE_EGRESS_PROXY_URL}/jira/{target}' \
--header 'Accept: application/json' \
--header 'forge-proxy-authorization: Forge as=app,id=invocation-123' \
--header 'Content-Type: application/json' \
--data '{}'Rate this page: