• Announcement banner
  • App data policies (EAP)
  • Application roles
  • Audit records
  • Avatars
  • Classification levels
  • Dashboards
  • Filters
  • Filter sharing
  • Group and user picker
  • Groups
  • Issues
  • UI modifications (apps)
  • Issue attachments
  • Issue comments
  • Issue comment properties
  • Issue fields
  • Issue field configurations
  • Issue custom field contexts
  • Issue custom field options
  • Issue custom field options (apps)
  • Issue custom field values (apps)
  • Issue custom field configuration (apps)
  • Issue navigator settings
  • Issue notification schemes
  • Issue priorities
  • Issue properties
  • Issue resolutions
  • Issue security level
  • Issue security schemes
  • Issue types
  • Issue type schemes
  • Issue type screen schemes
  • Issue type properties
  • Issue votes
  • Issue watchers
  • Issue worklogs
  • Issue worklog properties
  • Jira expressions
  • Jira settings
  • JQL
  • JQL functions (apps)
  • Labels
  • License metrics
  • Myself
  • Permissions
  • Permission schemes
  • Projects
  • Project avatars
  • Project categories
  • Project classification levels
  • Project components
  • Project email
  • Project features
  • Project key and name validation
  • Project permission schemes
  • Project properties
  • Project roles
  • Project role actors
  • Project types
  • Project versions
  • Screens
  • Screen tabs
  • Screen tab fields
  • Screen schemes
  • Server info
  • Status
  • Tasks
  • Time tracking
  • Users
  • User properties
  • Webhooks
  • Workflows
  • Workflow transition rules
  • Workflow schemes
  • Workflow scheme project associations
  • Workflow scheme drafts
  • Workflow statuses
  • Workflow status categories
  • Workflow transition properties
  • App properties
  • Dynamic modules
  • App migration
  • Service Registry
Cloud
Jira Cloud platform / Reference / REST API v3 (beta)

Project versions

Postman Collection
OpenAPI
GET

Get project versions paginated

Returns a paginated list of all versions in a project. See the Get project versions resource if you want to get a full list of versions without pagination.

This operation can be accessed anonymously.

Permissions required: Browse Projects project permission for the project.

Data Security Policy: Exempt from app access rules
Scopes

Connect app scope requiredREAD

ClassicRECOMMENDED:read:jira-work
Granular:read:project-version:jira

Request

Path parameters

projectIdOrKey

string

Required

Query parameters

startAt

integer

maxResults

integer

orderBy

string

query

string

status

string

expand

string

Responses

Returned if the request is successful.

application/json

PageBeanVersion

A page of items.

GET/rest/api/3/project/{projectIdOrKey}/version
1 2 3 4 5 6 7 8 9 10 11 12 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; const response = await api.asUser().requestJira(route`/rest/api/3/project/{projectIdOrKey}/version`, { headers: { 'Accept': 'application/json' } }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 { "isLast": false, "maxResults": 2, "nextPage": "https://your-domain.atlassian.net/rest/api/3/project/PR/version?startAt=2&maxResults=2", "self": "https://your-domain.atlassian.net/rest/api/3/project/PR/version?startAt=0&maxResults=2", "startAt": 0, "total": 7, "values": [ { "archived": false, "description": "An excellent version", "id": "10000", "name": "New Version 1", "overdue": true, "projectId": 10000, "releaseDate": "2010-07-06", "released": true, "self": "https://your-domain.atlassian.net/rest/api/3/version/10000", "userReleaseDate": "6/Jul/2010" }, { "archived": false, "description": "Minor Bugfix version", "id": "10010", "issuesStatusForFixVersion": { "done": 100, "inProgress": 20, "toDo": 10, "unmapped": 0 }, "name": "Next Version", "overdue": false, "projectId": 10000, "released": false, "self": "https://your-domain.atlassian.net/rest/api/3/version/10010" } ] }
GET

Get project versions

Returns all versions in a project. The response is not paginated. Use Get project versions paginated if you want to get the versions in a project with pagination.

This operation can be accessed anonymously.

Permissions required: Browse Projects project permission for the project.

Data Security Policy: Exempt from app access rules
Scopes

Connect app scope requiredREAD

ClassicRECOMMENDED:read:jira-work
Granular:read:project-version:jira

Request

Path parameters

projectIdOrKey

string

Required

Query parameters

expand

string

Responses

Returned if the request is successful.

application/json

array<Version>

GET/rest/api/3/project/{projectIdOrKey}/versions
1 2 3 4 5 6 7 8 9 10 11 12 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; const response = await api.asUser().requestJira(route`/rest/api/3/project/{projectIdOrKey}/versions`, { headers: { 'Accept': 'application/json' } }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 [ { "archived": false, "description": "An excellent version", "id": "10000", "name": "New Version 1", "overdue": true, "projectId": 10000, "releaseDate": 1278385482288, "releaseDateSet": false, "released": true, "self": "https://your-domain.atlassian.net/rest/api/3/version/10000", "startDateSet": false, "userReleaseDate": "6/Jul/2010" }, { "archived": false, "description": "Minor Bugfix version", "id": "10010", "issuesStatusForFixVersion": { "done": 100, "inProgress": 20, "toDo": 10, "unmapped": 0 }, "name": "Next Version", "overdue": false, "projectId": 10000, "releaseDateSet": false, "released": false, "self": "https://your-domain.atlassian.net/rest/api/3/version/10010", "startDateSet": false } ]
POST

Create version

Creates a project version.

This operation can be accessed anonymously.

Permissions required: Administer Jira global permission or Administer Projects project permission for the project the version is added to.

Data Security Policy: Exempt from app access rules
Scopes

Connect app scope requiredPROJECT_ADMIN

ClassicRECOMMENDED:manage:jira-project
Granular:write:project-version:jira, read:project-version:jira

Request

Request bodyapplication/json

archived

boolean

description

string

expand

string

moveUnfixedIssuesTo

string

name

string

project

string

projectId

integer

releaseDate

string

released

boolean

startDate

string

Responses

Returned if the request is successful.

application/json

Version

Details about a project version.

POST/rest/api/3/version
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; var bodyData = `{ "archived": false, "description": "An excellent version", "name": "New Version 1", "projectId": 10000, "releaseDate": "2010-07-06", "released": true }`; const response = await api.asUser().requestJira(route`/rest/api/3/version`, { method: 'POST', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, body: bodyData }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
201Response
1 2 3 4 5 6 7 8 9 10 11 12 { "archived": false, "description": "An excellent version", "id": "10000", "name": "New Version 1", "project": "PXA", "projectId": 10000, "releaseDate": "2010-07-06", "released": true, "self": "https://your-domain.atlassian.net/rest/api/3/version/10000", "userReleaseDate": "6/Jul/2010" }
GET

Get version

Returns a project version.

This operation can be accessed anonymously.

Permissions required: Browse projects project permission for the project containing the version.

Data Security Policy: Exempt from app access rules
Scopes

Connect app scope requiredREAD

ClassicRECOMMENDED:read:jira-work
Granular:read:project-version:jira

Request

Path parameters

id

string

Required

Query parameters

expand

string

Responses

Returned if the request is successful.

application/json

Version

Details about a project version.

GET/rest/api/3/version/{id}
1 2 3 4 5 6 7 8 9 10 11 12 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; const response = await api.asUser().requestJira(route`/rest/api/3/version/{id}`, { headers: { 'Accept': 'application/json' } }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
200Response
1 2 3 4 5 6 7 8 9 10 11 12 { "archived": false, "description": "An excellent version", "id": "10000", "name": "New Version 1", "overdue": true, "projectId": 10000, "releaseDate": "2010-07-06", "released": true, "self": "https://your-domain.atlassian.net/rest/api/3/version/10000", "userReleaseDate": "6/Jul/2010" }
PUT

Update version

Updates a project version.

This operation can be accessed anonymously.

Permissions required: Administer Jira global permission or Administer Projects project permission for the project that contains the version.

Data Security Policy: Exempt from app access rules
Scopes

Connect app scope requiredPROJECT_ADMIN

ClassicRECOMMENDED:manage:jira-project
Granular:write:project-version:jira, read:project-version:jira

Request

Path parameters

id

string

Required

Request bodyapplication/json

archived

boolean

description

string

expand

string

moveUnfixedIssuesTo

string

name

string

project

string

projectId

integer

releaseDate

string

released

boolean

startDate

string

Responses

Returned if the request is successful.

application/json

Version

Details about a project version.

PUT/rest/api/3/version/{id}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; var bodyData = `{ "archived": false, "description": "An excellent version", "id": "10000", "name": "New Version 1", "overdue": true, "projectId": 10000, "releaseDate": "2010-07-06", "released": true, "self": "https://your-domain.atlassian.net/rest/api/~ver~/version/10000", "userReleaseDate": "6/Jul/2010" }`; const response = await api.asUser().requestJira(route`/rest/api/3/version/{id}`, { method: 'PUT', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, body: bodyData }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
200Response
1 2 3 4 5 6 7 8 9 10 11 12 { "archived": false, "description": "An excellent version", "id": "10000", "name": "New Version 1", "project": "PXA", "projectId": 10000, "releaseDate": "2010-07-06", "released": true, "self": "https://your-domain.atlassian.net/rest/api/3/version/10000", "userReleaseDate": "6/Jul/2010" }
DEL

Delete versionDeprecated

Deletes a project version.

Deprecated, use Delete and replace version that supports swapping version values in custom fields, in addition to the swapping for fixVersion and affectedVersion provided in this resource.

Alternative versions can be provided to update issues that use the deleted version in fixVersion or affectedVersion. If alternatives are not provided, occurrences of fixVersion and affectedVersion that contain the deleted version are cleared.

This operation can be accessed anonymously.

Permissions required: Administer Jira global permission or Administer Projects project permission for the project that contains the version.

Data Security Policy: Exempt from app access rules
Scopes

Connect app scope requiredPROJECT_ADMIN

ClassicRECOMMENDED:manage:jira-project
Granular:delete:project-version:jira

Request

Path parameters

id

string

Required

Query parameters

moveFixIssuesTo

string

moveAffectedIssuesTo

string

Responses

Returned if the version is deleted.

DEL/rest/api/3/version/{id}
1 2 3 4 5 6 7 8 9 10 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; const response = await api.asUser().requestJira(route`/rest/api/3/version/{id}`, { method: 'DELETE' }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.text());
PUT

Merge versions

Merges two project versions. The merge is completed by deleting the version specified in id and replacing any occurrences of its ID in fixVersion with the version ID specified in moveIssuesTo.

Consider using Delete and replace version instead. This resource supports swapping version values in fixVersion, affectedVersion, and custom fields.

This operation can be accessed anonymously.

Permissions required: Administer Jira global permission or Administer Projects project permission for the project that contains the version.

Data Security Policy: Exempt from app access rules
Scopes

Connect app scope requiredPROJECT_ADMIN

ClassicRECOMMENDED:manage:jira-project
Granular:delete:project-version:jira, write:project-version:jira

Request

Path parameters

id

string

Required
moveIssuesTo

string

Required

Responses

Returned if the version is deleted.

application/json

any

PUT/rest/api/3/version/{id}/mergeto/{moveIssuesTo}
1 2 3 4 5 6 7 8 9 10 11 12 13 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; const response = await api.asUser().requestJira(route`/rest/api/3/version/{id}/mergeto/{moveIssuesTo}`, { method: 'PUT', headers: { 'Accept': 'application/json' } }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
POST

Move version

Modifies the version's sequence within the project, which affects the display order of the versions in Jira.

This operation can be accessed anonymously.

Permissions required: Browse projects project permission for the project that contains the version.

Data Security Policy: Exempt from app access rules
Scopes

Connect app scope requiredPROJECT_ADMIN

ClassicRECOMMENDED:manage:jira-project
Granular:write:project-version:jira, read:project-version:jira

Request

Path parameters

id

string

Required

Request bodyapplication/json

after

string

position

string

Responses

Returned if the request is successful.

application/json

Version

Details about a project version.

POST/rest/api/3/version/{id}/move
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; var bodyData = `{ "after": "https://your-domain.atlassian.net/rest/api/~ver~/version/10000" }`; const response = await api.asUser().requestJira(route`/rest/api/3/version/{id}/move`, { method: 'POST', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, body: bodyData }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
200Response
1 2 3 4 5 6 7 8 9 10 11 12 { "archived": false, "description": "An excellent version", "id": "10000", "name": "New Version 1", "overdue": true, "projectId": 10000, "releaseDate": "2010-07-06", "released": true, "self": "https://your-domain.atlassian.net/rest/api/3/version/10000", "userReleaseDate": "6/Jul/2010" }
GET

Get version's related issues count

Returns the following counts for a version:

  • Number of issues where the fixVersion is set to the version.
  • Number of issues where the affectedVersion is set to the version.
  • Number of issues where a version custom field is set to the version.

This operation can be accessed anonymously.

Permissions required: Browse projects project permission for the project that contains the version.

Data Security Policy: Exempt from app access rules
Scopes

Connect app scope requiredREAD

ClassicRECOMMENDED:read:jira-work
Granular:read:field:jira, read:project-version:jira

Request

Path parameters

id

string

Required

Responses

Returned if the request is successful.

application/json

VersionIssueCounts

Various counts of issues within a version.

GET/rest/api/3/version/{id}/relatedIssueCounts
1 2 3 4 5 6 7 8 9 10 11 12 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; const response = await api.asUser().requestJira(route`/rest/api/3/version/{id}/relatedIssueCounts`, { headers: { 'Accept': 'application/json' } }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 { "customFieldUsage": [ { "customFieldId": 10000, "fieldName": "Field1", "issueCountWithVersionInCustomField": 2 }, { "customFieldId": 10010, "fieldName": "Field2", "issueCountWithVersionInCustomField": 3 } ], "issueCountWithCustomFieldsShowingVersion": 54, "issuesAffectedCount": 101, "issuesFixedCount": 23, "self": "https://your-domain.atlassian.net/rest/api/3/version/10000" }
GET

Get related work

Returns related work items for the given version id.

This operation can be accessed anonymously.

Permissions required: Browse projects project permission for the project containing the version.

Data Security Policy: Exempt from app access rules
Scopes

Connect app scope requiredREAD

ClassicRECOMMENDED:read:jira-work
Granular:read:project-version:jira

Request

Path parameters

id

string

Required

Responses

Returned if the request is successful.

application/json

array<VersionRelatedWork>

GET/rest/api/3/version/{id}/relatedwork
1 2 3 4 5 6 7 8 9 10 11 12 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; const response = await api.asUser().requestJira(route`/rest/api/3/version/{id}/relatedwork`, { headers: { 'Accept': 'application/json' } }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 [ { "category": "Design", "issueId": 10001, "relatedWorkId": "fabcdef6-7878-1234-beaf-43211234abcd", "title": "Design link", "url": "https://www.atlassian.com" }, { "category": "Communications", "relatedWorkId": "fabcdef6-7878-1234-beaf-43211234abce", "title": "Chat application", "url": "https://www.atlassian.com" }, { "category": "External Link", "issueId": 10003, "relatedWorkId": "fabcdef6-7878-1234-beaf-43211234abcf", "url": "https://www.atlassian.com" } ]
PUT

Update related work

Updates the given related work. You can only update generic link related works via Rest APIs. Any archived version related works can't be edited.

This operation can be accessed anonymously.

Permissions required: Resolve issues: and Edit issues Managing project permissions for the project that contains the version.

Data Security Policy: Exempt from app access rules
Scopes

Connect app scope requiredPROJECT_ADMIN

ClassicRECOMMENDED:write:jira-work
Granular:write:issue:jira

Request

Path parameters

id

string

Required

Request bodyapplication/json

category

string

Required
title

string

url

string

Responses

Returned if the request is successful together with updated related work.

application/json

VersionRelatedWork

Associated related work to a version

PUT/rest/api/3/version/{id}/relatedwork
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; var bodyData = `{ "category": "Design", "relatedWorkId": "fabcdef6-7878-1234-beaf-43211234abcd", "title": "Design link", "url": "https://www.atlassian.com" }`; const response = await api.asUser().requestJira(route`/rest/api/3/version/{id}/relatedwork`, { method: 'PUT', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, body: bodyData }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
200Response
1 2 3 4 5 6 { "category": "Design", "relatedWorkId": "fabcdef6-7878-1234-beaf-43211234abcd", "title": "Design link", "url": "https://www.atlassian.com" }
POST

Create related work

Creates a related work for the given version. You can only create a generic link type of related works via this API. relatedWorkId will be auto-generated UUID, that does not need to be provided.

This operation can be accessed anonymously.

Permissions required: Resolve issues: and Edit issues Managing project permissions for the project that contains the version.

Data Security Policy: Exempt from app access rules
Scopes

Connect app scope requiredPROJECT_ADMIN

ClassicRECOMMENDED:write:jira-work
Granular:write:issue:jira

Request

Path parameters

id

string

Required

Request bodyapplication/json

category

string

Required
title

string

url

string

Responses

Returned if the request is successful.

application/json

VersionRelatedWork

Associated related work to a version

POST/rest/api/3/version/{id}/relatedwork
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; var bodyData = `{ "category": "Design", "title": "Design link", "url": "https://www.atlassian.com" }`; const response = await api.asUser().requestJira(route`/rest/api/3/version/{id}/relatedwork`, { method: 'POST', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, body: bodyData }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
201Response
1 2 3 4 5 6 { "category": "Design", "relatedWorkId": "fabcdef6-7878-1234-beaf-43211234abcd", "title": "Design link", "url": "https://www.atlassian.com" }
POST

Delete and replace version

Deletes a project version.

Alternative versions can be provided to update issues that use the deleted version in fixVersion, affectedVersion, or any version picker custom fields. If alternatives are not provided, occurrences of fixVersion, affectedVersion, and any version picker custom field, that contain the deleted version, are cleared. Any replacement version must be in the same project as the version being deleted and cannot be the version being deleted.

This operation can be accessed anonymously.

Permissions required: Administer Jira global permission or Administer Projects project permission for the project that contains the version.

Data Security Policy: Exempt from app access rules
Scopes

Connect app scope requiredPROJECT_ADMIN

ClassicRECOMMENDED:manage:jira-project
Granular:delete:project-version:jira, write:project-version:jira

Request

Path parameters

id

string

Required

Request bodyapplication/json

customFieldReplacementList

array<CustomFieldReplacement>

moveAffectedIssuesTo

integer

moveFixIssuesTo

integer

Responses

Returned if the version is deleted.

application/json

any

POST/rest/api/3/version/{id}/removeAndSwap
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; var bodyData = `{ "customFieldReplacementList": [ { "customFieldId": 66, "moveTo": 67 } ], "moveAffectedIssuesTo": 97, "moveFixIssuesTo": 92 }`; const response = await api.asUser().requestJira(route`/rest/api/3/version/{id}/removeAndSwap`, { method: 'POST', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, body: bodyData }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
GET

Get version's unresolved issues count

Returns counts of the issues and unresolved issues for the project version.

This operation can be accessed anonymously.

Permissions required: Browse projects project permission for the project that contains the version.

Data Security Policy: Not exempt from app access rules
Scopes

Connect app scope requiredREAD

ClassicRECOMMENDED:read:jira-work
Granular:read:project-version:jira

Request

Path parameters

id

string

Required

Responses

Returned if the request is successful.

application/json

VersionUnresolvedIssuesCount

Count of a version's unresolved issues.

GET/rest/api/3/version/{id}/unresolvedIssueCount
1 2 3 4 5 6 7 8 9 10 11 12 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; const response = await api.asUser().requestJira(route`/rest/api/3/version/{id}/unresolvedIssueCount`, { headers: { 'Accept': 'application/json' } }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
200Response
1 2 3 4 5 { "issuesCount": 30, "issuesUnresolvedCount": 23, "self": "https://your-domain.atlassian.net/rest/api/3/version/10000" }
DEL

Delete related work

Deletes the given related work for the given version.

This operation can be accessed anonymously.

Permissions required: Resolve issues: and Edit issues Managing project permissions for the project that contains the version.

Data Security Policy: Exempt from app access rules
Scopes

Connect app scope requiredPROJECT_ADMIN

ClassicRECOMMENDED:write:jira-work
Granular:write:issue:jira

Request

Path parameters

versionId

string

Required
relatedWorkId

string

Required

Responses

Returned if the related work is deleted.

DEL/rest/api/3/version/{versionId}/relatedwork/{relatedWorkId}
1 2 3 4 5 6 7 8 9 10 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; const response = await api.asUser().requestJira(route`/rest/api/3/version/{versionId}/relatedwork/{relatedWorkId}`, { method: 'DELETE' }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.text());

Rate this page: