Skip to content

Instantly share code, notes, and snippets.

@thagler
Last active May 5, 2025 17:29
Show Gist options
  • Save thagler/0bcd5c10001735d3d822e66308817ec4 to your computer and use it in GitHub Desktop.
Save thagler/0bcd5c10001735d3d822e66308817ec4 to your computer and use it in GitHub Desktop.
openapi: 3.1.0
info:
title: Jira Export API
description: Accesses Jira projects and issue types using Basic Auth via email and API key.
version: 1.0.0
servers:
- url: https://phase2tech.atlassian.net
description: Jira Cloud
components:
securitySchemes:
basicAuth:
type: http
scheme: basic
paths:
/rest/api/3/project/search:
get:
operationId: getProjects
summary: Get all Jira projects
security:
- basicAuth: []
responses:
'200':
description: A list of Jira projects
content:
application/json:
schema:
type: object
/rest/api/3/issuetype:
get:
operationId: getIssueTypes
summary: Get all Jira issue types
security:
- basicAuth: []
responses:
'200':
description: A list of Jira issue types
content:
application/json:
schema:
type: array
items:
type: object
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment