Hierarchy

  • CommonHttpService
    • InfoService

Constructors

Methods

Constructors

  • Internal

    Create a new instance of the service.

    Parameters

    • getClientInstance: (() => CommonHttpClient)
        • (): CommonHttpClient
        • Returns CommonHttpClient

    Returns InfoService

Methods

  • 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.

    Returns Promise<SoftwareInfoDto>

    Returns the runtime information for the Jira Service Management instance.

    example:

    {
    "_links": {
    "self": "https://your-domain.atlassian.net/rest/servicedeskapi/info"
    },
    "buildChangeSet": "c6679417c550918e7c94a9eaaada133f15dc8ff0",
    "buildDate": {
    "epochMillis": 1442259240000,
    "friendly": "Monday 02:34 AM",
    "iso8601": "2015-09-15T02:34:00+0700",
    "jira": "2015-09-15T02:34:00.000+0700"
    },
    "isLicensedForUse": true,
    "platformVersion": "7.0.1",
    "version": "3.0.1"
    }
  • Method to initialize the class. Normally used to set up validation rules.

    Returns void