How to fetch Application link status through REST api ?

Platform Notice: Data Center Only - This article only applies to Atlassian apps on the Data Center platform.

Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Summary

This knowledge base article describes a scenario where user wants to get Application link status through REST api call.

Environment

Jira Software 8.x, 9.x

Diagnosis

Following are few examples for fetching application link status. First REST operation is to get ID of application-link. With this ID we can fetch the working status of application-link as true or false.

Example 1:

# Get application-link id. ❯ curl -s -u "user:password" https://jira.base.url/rest/applinks/3.0/applinks|jq '.[].id' "85dceef5-feca-3983-943c-83b6d193b1d8" # Use application-link id to get status ❯ curl -s -u "user:password" https://jira.base.url/rest/applinks/3.0/status/85dceef5-feca-3983-943c-83b6d193b1d8|jq .working true

Example 2:

# Get application-link id. ❯ curl -s -u "user:password" http://jira.base.url/rest/applinks/3.0/applinks|jq '.[].id' "85dceef5-feca-3983-943c-83b6d193b1d8" # Use application-link id to get status ❯ curl -s -u "user:password" http://jira.base.url/rest/applinks/3.0/status/85dceef5-feca-3983-943c-83b6d193b1d8|jq .working false

Solution

Following REST uri, should be helpful to get status of application link. Check Diagnosis section for examples.

https://jira.base.url/rest/applinks/3.0/status/[app-link-id]
Updated on April 21, 2026

Still need help?

The Atlassian Community is here for you.