• Assets
  • Customer
  • Info
  • Knowledgebase
  • Organization
  • Request
  • Requesttype
  • Servicedesk
Cloud
Jira Service Management Cloud / Reference / REST API

Rate this page:

Info

OpenAPI
GET

Get info

This method retrieves information about the Jira Service Management instance such as software version, builds, and related links.

Permissions required: None, the user does not need to be logged in.

Connect app scope requiredREAD

Request

This request has no parameters.

Responses

Returns the runtime information for the Jira Service Management instance.

application/json

SoftwareInfoDTO
GET
/rest/servicedeskapi/info
1 2 3 4 curl --request GET \ --url 'https://your-domain.atlassian.net/rest/servicedeskapi/info' \ --header 'Authorization: Bearer <access_token>' \ --header 'Accept: application/json'
200
Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 { "version": "3.0.1", "platformVersion": "7.0.1", "buildDate": { "iso8601": "2015-09-15T02:34:00+0700", "jira": "2015-09-15T02:34:00.000+0700", "friendly": "Monday 02:34 AM", "epochMillis": 1442259240000 }, "buildChangeSet": "c6679417c550918e7c94a9eaaada133f15dc8ff0", "isLicensedForUse": true, "_links": { "self": "https://your-domain.atlassian.net/rest/servicedeskapi/info" } }