Last active
May 5, 2025 17:29
-
-
Save thagler/0bcd5c10001735d3d822e66308817ec4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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