Retrieve All Issue Types

/services/v2/jira/issuetype.json

šŸš§

Permissions & Notes:

Make sure you have read the JIRA Integration Documentation in the Get Started, Integrations and Plugins Section before trying out the endpoint. There are specific steps and permissions needed to be able to see results from the endpoints in your AnswerHub instance.

Sample Request

A GET Retrieve All Issue Types request for all issue types relating to all JIRA tickets sent to https://apidocs.cloud.answerhub.com using a human-readable Username/Password (answerhub/test123) would look like this:

curl 
-u answerhub:test123 
-H "Accept: application/json" 
-H "Content-type: application/json" 
-X GET "https://apidocs.cloud.answerhub.com/services/v2/jira/issuetype.json"

Expected Response: HTTP 200 - OK

The example response below was cut short due to the length.

[
    {
        "name": "Problem"
    },
    {
        "name": "Incident"
    },
    {
        "name": "Service Request"
    },
    {
        "name": "Service Request with Approvals"
    },
    {
        "name": "Sub-task"
    },
    {
        "name": "Technical task"
    },
    {
        "name": "Bug"
    },
    {
        "name": "Epic"
    },
    {
        "name": "Story"
    },
    {
        "name": "New Feature"
    },
    {
        "name": "Task"
    },
    {
        "name": "Epic"
    },
    {
        "name": "Story"
    },
    {
        "name": "Meeting"
    },
    {
        "name": "Backlog Grooming"
    },
    {
        "name": "Docs"
    }
]
Language
Authorization
Basic
base64
:
Click Try It! to start a request and see the response here!