Automation modules
Bitbucket modules
Common modules
Compass modules
Confluence modules
Jira modules
Jira Service Management modules
Jira Software modules
Rovo modules
Last updated Jul 11, 2025

Jira Software Remote Link Information Provider

The devops:remoteLinkInfoProvider module allows Forge apps to send remote link information to Jira and associate it with an issue.

Supplied remote link information will be presented in the development panel of the issue it is associated with.

Remote link information is written and deleted via the Jira Software REST API which can be accessed by Forge apps using the requestJira function.

When a user uninstalls an app, all the data that the app sent to Jira is deleted immediately. If the app is reinstalled, this data won't be added back unless the app resends historical information to Jira.

Example

1
2
modules:
  devops:remoteLinkInfoProvider:
    - key: my-remote-link-info-provider
      name:
        value: My Remote Link Info Provider
      homeUrl: https://www.my-remote-link-info.com
      logoUrl: https://www.my-remote-link-info.com/logo.svg
      documentationUrl: https://www.my-remote-link-info.com/help

Properties

PropertyTypeRequiredDescription
keystringYes

A key to identify this module.

nameobjectYes

A human readable name.

name.valuestringYes

Min length: 1

Max length: 255

homeUrlstringYes

URL to the provider's homepage.

Min length: 1

Max length: 255

Regex: ^(http|https):\/\/.*$

logoUrlstringNo

The logo for the provider, will be displayed in an area 16 by 16 pixels.

Min length: 1

Max length: 255

Regex: ^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\\\?([^#]*))?(#(.*))?

documentationUrlstringNo

Optional URL to documentation about the provider's Jira integration.

Min length: 1

Max length: 255

Regex: ^(http|https):\/\/.*$

Rate this page: