Rate this page:
Information about app migration compatibility
GET /rest/2/addons/{addonKey}/migration
Get migration info about the Server/DC version for this app. All fields except addonName, addonKey and vendorId are optional and may not exist
string
The unique identifier for this app
1 2 3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/addons/{addonKey}/migration' \
--header 'Accept: application/json'
Successful GET response
Content type | Value |
---|---|
application/json |
PUT /rest/2/addons/{addonKey}/migration
Create app migration information for consumption. All fields are optional
string
The unique identifier for this app
string
Cloud specific addonKey, for when an equivalent Cloud version of an existing Server/DC app is hosted in its own separate Marketplace listing
string
Description of cloud version
Valid values: NATIVE
, PUBLIC
, PRIVATE
string
URL to page documenting cloud version development roadmap
string
URL to page documenting feature difference documentation
string
URL to page documenting Server/DC to cloud migration documentation
string
The Server/DC app's minimum version that is compatible with the Cloud Migration Assistant
boolean
Defines whether this app has opted into the dual license program
1 2 3 4 5 6 7 8 9 10 11 12 13 14
curl --request PUT \
--url 'https://marketplace.atlassian.com/rest/2/addons/{addonKey}/migration' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"cloudAddonKey": "<string>",
"cloudVersionAvailability": "NATIVE",
"cloudVersionDevelopmentRoadmap": "<string>",
"featureDifferenceDocumentation": "<string>",
"migrationDocumentation": "<string>",
"cloudMigrationAssistantCompatibility": "8.6.5",
"isDualLicenseOptedIn": true
}'
Successfully created
Content type | Value |
---|---|
application/json |
PATCH /rest/2/addons/{addonKey}/migration
Update migration information for this app. All fields except addonName, addonKey and vendorId are optional and may not exist
string
The unique identifier for this app
Content type | Value |
---|---|
application/json-patch+json |
1 2 3 4
curl --request PATCH \
--url 'https://marketplace.atlassian.com/rest/2/addons/{addonKey}/migration' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Successful
Content type | Value |
---|---|
application/json |
Rate this page: