Start a conversation

Retrieve All Issue Types

Overview


Information

/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
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"
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.

  • JSON
[ { "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" } ]
[
    {
        "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"
    }
]
Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. Priyanka Bhotika

  2. Posted

Comments