...
Info |
---|
This documentation refers to Jira Data Center only. This page contains the basic examples. To get all options please navigate to: https://developer.atlassian.com/server/jira/platform/rest/v10004/intro/#gettingstarted |
Jira has REST APIs and Java APis that you can use to interact with Jira. For example, you may want to integrate your existing application with Jira or write a script to get information from Jira. For more information, check out our reference documentation:
...
Expand | |||||
---|---|---|---|---|---|
| |||||
POST /rest/api/2/issue/{issueIdOrKey}/votes Adds voter (currently logged user) to particular ticket. You need to be logged in to use this method. RequestPath parametersissueIdOrKey Required string Issue id. Example
|
Expand | |||||
---|---|---|---|---|---|
| |||||
DELETE /rest/api/2/issue/{issueIdOrKey}/votes Remove your vote from an issue. RequestPath parametersissueIdOrKey Required string Issue id or key Example
|
Expand | |||||
---|---|---|---|---|---|
| |||||
ET /rest/api/2/issue/{issueIdOrKey}/worklog Returns all work logs for an issue. Work logs won't be returned if the Log work field is hidden for the project. RequestPath parametersissueIdOrKey Required string Issue id or key Example
|
...
Expand | |||||
---|---|---|---|---|---|
| |||||
GET /rest/api/2/customFields Returns a list of Custom Fields in the given range. RequestQuery parameterssortColumn string The column by which to sort the returned custom fields. types string A list of custom field types to filter the custom fields. search string A query string used to search custom fields. maxResults string The maximum number of custom fields to return. sortOrder string The order in which to sort the returned custom fields. screenIds string A list of screen IDs to filter the custom fields. lastValueUpdate string The last value update to filter the custom fields. projectIds string A list of project IDs to filter the custom fields. startAt string The starting index of the returned custom fields. Example
|
Expand | |||||
---|---|---|---|---|---|
| |||||
DELETE /rest/api/2/customFields Deletes custom fields in bulk. RequestQuery parametersids Required string A list of custom field IDs to delete. Example
|
Expand | |||||
---|---|---|---|---|---|
| |||||
Experimental GET /rest/api/2/customFields/{customFieldId}/options Returns custom field's options defined in a given context composed of projects and issue types. RequestPath parameterscustomFieldId Required string The ID of the custom field. Query parametersmaxResults string The maximum number of results to return. issueTypeIds string A list of issue type IDs in a context. query string A string used to filter options. sortByOptionName string Flag to sort options by their names. useAllContexts string Flag to fetch all options regardless of context, project IDs, or issue type IDs. page string The page of options to return. projectIds string A list of project IDs in a context. Example
|
...
Atlassian's architecture documentation will help you understand Jira fundamentals and get a high-level perspective of Jira's dependencies.
...