Project shortcuts

 

 

General information

Available since v. 2.3.0

Get all project shortcuts

Available for all Jira users

Method type: GET

URL: {JIRA_URL}/rest/extender/1.0/project/{PROJECT_KEY_OR_ID}/shortcuts

  • where {PROJECT_KEY_OR_ID} is the project key or id

Respons format: JSON

Example response:

{ "total": 2, "shortcuts": [ { "name": "New shortcut", "id": 3, "url": "https://marketplace.atlassian.com/apps/1217643/extender-for-jira" }, { "name": "Atlassian Marketplace", "id": 4, "url": "https://marketplace.atlassian.com" } ] }

 


Create project shortcut

Available for JIRA Administrators
Available for actual Project Lead
Available for project Administrators

Method type: PUT

URL: {JIRA_URL}/rest/extender/1.0/project/{PROJECT_KEY_OR_ID}/shortcut

  • where {PROJECT_KEY_OR_ID} is the project key or id

Request format: JSON

Example request:

{ "name": "New shortcut", "url": "https://marketplace.atlassian.com/apps/1217643/extender-for-jira" }

Request format: JSON

Example response:

{ "shortcut": { "name": "New shortcut", "id": 1, "url": "https://marketplace.atlassian.com/apps/1217643/extender-for-jira" }, "message": "shortcut created" }

 


Edit project shortcut

Method type: PUT

URL: {JIRA_URL}/rest/extender/1.0/project/{PROJECT_KEY_OR_ID}/shortcut/{SHORTCUT_ID}

  • where {PROJECT_KEY_OR_ID} is the project key or id

  • where {SHORTCUT_ID} is the shortcut id

Request format: JSON

Example request:

Request format: JSON

Example response:

 


Delete project shortcut

Method type: DELETE

URL: {JIRA_URL}/rest/extender/1.0/project/{PROJECT_KEY_OR_ID}/shortcut/{SHORTCUT_ID}

  • where {PROJECT_KEY_OR_ID} is the project key or id

  • where {SHORTCUT_ID} is the shortcut id

Request format: JSON

Example request: