Cookie Notice

JIRA 4.3 REST API documentation

This document describes the REST API and resources provided by JIRA. The REST APIs are for developers who want to integrate JIRA into their application and for administrators who want to script interactions with the JIRA server.

JIRA's REST APIs provide access to resources (data entities) via URI paths. To use a REST API, your application will make an HTTP request and parse the response. Currently, the only supported reponse format is JSON. Your methods will be the standard HTTP methods like GET, PUT, POST and DELETE (see API descriptions below for which methods are available for each resource).

Because the REST API is based on open standards, you can use any web development language to access the API.

Structure of the REST URIs

URIs for JIRA's REST API resource have the following structure:

With context: http://host:port/context/rest/api-name/api-version/resource-name

Or without context: http://host:port/rest/api-name/api-version/resource-name

Currently, the are two api-names available 'api' and 'auth'. REST endpoints in the 'api' path allow you to access most of the information contained within an issue. The current api-version is 2.0.alpha1. REST endpoints in the 'auth' path allow you to access information related to authentication. The current api-version is 1.

Example with context: http://myhost.com:8080/jira/rest/api/2.0.alpha1/project/JRA

Example without context: http://myhost.com:8080/rest/api/2.0.alpha1/project/JRA

How to use expansion in the REST APIs

In order to minimise network traffic from the client perspective, our API uses a technique called expansion.

You can use the 'expand' query parameter to specify a comma-separated list of entities that you want expanded, identifying each entity by a given identifier. For example, the value "comments,worklogs" requests the expansion of entities for which the expand identifier is "comments" and worklogs".

To discover the identifiers for each entity, look at the 'expand' attribute in the parent object. In the JSON example below, the object declares widgets as being expandable.

Note: The 'expand' attribute should not be confused with the 'expand' query parameter which specifies which entities you want expanded.

You can use the dot notation to specify expansion of entities within another entity. For example "children.children" would expand the children and the children's children (because its expand identifier is children) and the child entities within the plugin.

All methods return accept and return JSON exclusively. Example:

{
    "expand": "widgets",
    "self": "http://www.example.com/jira/rest/api/resource/KEY-1",
    "widgets": {
        "widgets": [],
        "size": 5
    }
}

This documents the current REST API provided by JIRA.

Resources

/api/2.0.alpha1/attachment/{id}

resource-wide template parameters
parametervaluedescription

id

string

the attachment id

Methods

GET

Returns the meta-data for an attachment, including the URI of the actual attached file.

available response representations:

  • 404 [expand]
  • 200 - application/json (attachment) [expand]

/api/2.0.alpha1/issue/{issueKey}/attachments

Issue attachments

resource-wide template parameters
parametervaluedescription

issueKey

string

the issue that you want to add the attachments to

Methods

POST

Add one or more attachments to an issue. In order to protect against XSRF attacks, because this method accepts multipart/form-data, it has XSRF protection on it. This means you must submit a header of X-Atlassian-Token: nocheck with the request, otherwise it will be blocked.

available response representations:

  • 204 [expand]
  • 404 [expand]
  • 403 [expand]

/api/2.0.alpha1/worklog/{id}

resource-wide template parameters
parametervaluedescription

id

string

a String containing the work log id

Methods

GET

Returns a work log.

available response representations:

  • 404 [expand]
  • 200 - application/json (worklog) [expand]

/api/2.0.alpha1/comment/{id}?render

resource-wide template parameters
parametervaluedescription

id

string

the ID of the comment to request

Methods

GET

Returns a single issue comment.

request query parameters
parametervaluedescription

render

boolean

Default: true

true if text fields should be rendered according to the renderer associated with them; false to return the raw, unrendered data

available response representations:

  • 404 [expand]
  • 200 - application/json (comment) [expand]

/api/2.0.alpha1/serverInfo

Methods

GET

Returns general information about the current JIRA server.

available response representations:

  • 200 - application/json (serverInfo) [expand]

/api/2.0.alpha1/component/{id}

resource-wide template parameters
parametervaluedescription

id

string

a String containing the component key

Methods

GET

Returns a project component.

available response representations:

  • 404 [expand]
  • 200 - application/json (component) [expand]

/api/2.0.alpha1/resolution/{id}

resource-wide template parameters
parametervaluedescription

id

string

a String containing the resolution id

Methods

GET

Returns a resolution.

available response representations:

  • 404 [expand]
  • 200 - application/json (resolution) [expand]

/api/2.0.alpha1/priority/{id}

resource-wide template parameters
parametervaluedescription

id

string

a String containing the priority id

Methods

GET

Returns an issue priority.

available response representations:

  • 404 [expand]
  • 200 - application/json (issuePriority) [expand]

/api/2.0.alpha1/issueLinkType

Rest resource to retrieve a list of issue link types.

Methods

GET

Returns a list of available issue link types, if issue linking is enabled. Each issue link type has an id, a name and a label for the outward and inward link relationship.

available response representations:

  • 404 [expand]
  • 200 - application/json (issueLinkTypes) [expand]

/api/2.0.alpha1/issueLinkType/{issueLinkTypeId}

resource-wide template parameters
parametervaluedescription

issueLinkTypeId

string

Methods

GET

Returns for a given issue link type id all information about this issue link type.

available response representations:

  • 404 [expand]
  • 200 - application/json (issueLinkType) [expand]

/auth/1/websudo

Methods

DELETE

available response representations:

/api/2.0.alpha1/status/{id}

resource-wide template parameters
parametervaluedescription

id

string

a numeric Status id

Methods

GET

Returns a full representation of the Status having the given id.

available response representations:

  • 404 [expand]
  • 200 - application/json (status) [expand]

/api/2.0.alpha1/issueLink

The Link Issue Resource provides functionality to manage issue links.

Methods

POST

Creates an issue link between two issues. The user requires the link issue permission for the issue which will be linked to another issue. The specified link type in the request is used to create the link and will create a link from the first issue to the second issue using the outward description. It also create a link from the second issue to the first issue using the inward description of the issue link type. It will add the supplied comment to the first issue. The comment can have a restriction who can view it. If group is specified, only users of this group can view this comment, if roleLevel is specified only users who have the specified role can view this comment. The user who creates the issue link needs to belong to the specified group or have the specified role.

acceptable request representations:

  • application/json [expand]

available response representations:

  • 404 [expand]
  • 200 - application/json [expand]
  • 401 [expand]
  • 400 [expand]
  • 500 [expand]

/api/2.0.alpha1/project

Methods

GET

Returns all projects which are visible for the currently logged in user. If no user is logged in, it returns the list of projects that are visible when using anonymous access.

available response representations:

  • 200 - application/json (projects) [expand]
  • 500 [expand]

/api/2.0.alpha1/project/{key}

resource-wide template parameters
parametervaluedescription

key

string

the project key

Methods

GET

Contains a full representation of a project in JSON format.

available response representations:

  • 404 [expand]
  • 200 - application/json (project) [expand]

/api/2.0.alpha1/issue/{issueKey}

resource-wide template parameters
parametervaluedescription

issueKey

string

the issue key to request (i.e. JRA-1330)

Methods

GET

Returns a full representation of the issue for the given issue key.

available response representations:

  • 404 [expand]
  • 200 - application/json (issue) [expand]

/api/2.0.alpha1/issue/{issueKey}/transitions

resource-wide template parameters
parametervaluedescription

issueKey

string

the issue you want to transition

Methods

GET

Get a list of the transitions possible for this issue by the current user, along with fields that are required and their types.

available response representations:

  • 404 [expand]
  • 200 - application/json [expand]

POST

Perform a transition on an issue. The POST must contain a single JSON Object. It must have a "transition" string and a "fields" object. A "comment" is optional. The comment can be either a simple string or an object with a "body" and "role" or "group".

acceptable request representations:

  • application/json [expand]

available response representations:

  • 204 [expand]
  • 404 [expand]
  • 400 [expand]

/api/2.0.alpha1/issue/{issueKey}/votes

resource-wide template parameters
parametervaluedescription

issueKey

string

the issue to view voting information for

Methods

DELETE

Remove your vote from an issue. (i.e. "unvote")

available response representations:

  • 204 [expand]
  • 404 [expand]

POST

Cast your vote in favour of an issue.

available response representations:

  • 204 [expand]
  • 404 [expand]

GET

A REST sub-resource representing the voters on the issue. This sub-resource is also used for voting and unvoting (via POST and DELETE).

available response representations:

  • 404 [expand]
  • 200 - application/json [expand]

/api/2.0.alpha1/issue/{issueKey}/watchers

resource-wide template parameters
parametervaluedescription

issueKey

string

a String containing an issue key

Methods

GET

Returns the list of watchers for the issue with the given key.

available response representations:

  • 404 [expand]
  • 200 - application/json (watchers) [expand]

POST

Adds a user to an issue's watcher list.

acceptable request representations:

  • application/json [expand]

available response representations:

  • 204 [expand]
  • 404 [expand]
  • 401 [expand]
  • 400 [expand]

/api/2.0.alpha1/issue/{issueKey}/watchers/{userName}

resource-wide template parameters
parametervaluedescription

userName

string

a String containing the name of the user to remove from the watcher list

issueKey

string

a String containing an issue key

Methods

DELETE

Removes a user from an issue's watcher list.

available response representations:

  • 204 [expand]
  • 404 [expand]
  • 401 [expand]

/api/2.0.alpha1/search?jql&startAt&maxResults

Resource for searches.

Methods

GET

Searches for issues using JQL. If the JQL query is too large to be encoded as a query param you should instead POST to this resource.

request query parameters
parametervaluedescription

jql

string

a JQL query string

startAt

int

the index of the first issue to return (0-based)

maxResults

int

the maximum number of issues to return (defaults to 50). The maximum allowable value is dictated by the JIRA property 'jira.search.views.default.max'. If you specify a value that is higher than this number, your search results will be truncated.

available response representations:

  • 200 - application/json (searchResults) [expand]
  • 400 [expand]

POST

Performs a search using JQL.

acceptable request representations:

  • application/json (searchRequest) [expand]

available response representations:

  • 200 - application/json (searchResults) [expand]
  • 400 [expand]

/api/2.0.alpha1/issueType/{id}

resource-wide template parameters
parametervaluedescription

id

string

a String containing an issue type id

Methods

GET

Returns a full representation of the issue type that has the given id.

available response representations:

  • 404 [expand]
  • 200 - application/json (issueType) [expand]

/api/2.0.alpha1/user?username

Methods

GET

Returns a user. This resource cannot be accessed anonymously.

request query parameters
parametervaluedescription

username

string

the username

available response representations:

  • 404 [expand]
  • 200 - application/json (user) [expand]
  • 401 [expand]

/api/2.0.alpha1/version/{id}

resource-wide template parameters
parametervaluedescription

id

string

a String containing the version id

Methods

GET

Returns a project version.

available response representations:

  • 404 [expand]
  • 200 - application/json (project) [expand]

/auth/1/session

Implement a REST resource for acquiring a session cookie.

Methods

POST

Login a user to JIRA.

acceptable request representations:

  • application/json [expand]

available response representations:

  • 200 [expand]
  • 401 [expand]
  • 403 [expand]

GET

Get information about the current user. If the current user is anonymous they will get a permission denied error trying to access this resource. The response contains information about the current user. It will contain their username, login information, and a link to the User Resource for the user.

available response representations:

  • 200 [expand]

DELETE

Log the current user out of JIRA.

available response representations:

  • 204 [expand]
  • 401 [expand]
View cookie preferences