Rate this page:
Provides endpoints to access files exported from the server (files not exported as part of the migration)
Disclaimer: Atlassian Connect Resource. Replace the product-specific-path
with the corresponding product API i.e.,
your-site.atlassian.net/wiki/rest/atlassian-connect/1/migration/
for Confluenceyour-site.atlassian.net/rest/atlassian-connect/1/migration/
for JiraGET /rest/atlassian-connect/1/migration/data/{transferId}/all
Returns all uploaded data keys for a transferId
string
transferId
uuid
1 2 3
curl --request GET \
--url 'https://your-site.atlassian.net/rest/atlassian-connect/1/migration/data/{transferId}/all' \
--header 'Accept: application/json'
OK
Content type | Value |
---|---|
application/json | Array<UploadedDataDto> |
GET /rest/atlassian-connect/1/migration/data/{s3Key}
Returns an object containing a signed url to retrieve app data
string
s3Key
uuid
1 2 3
curl --request GET \
--url 'https://your-site.atlassian.net/rest/atlassian-connect/1/migration/data/{s3Key}' \
--header 'Accept: application/json'
OK
Content type | Value |
---|---|
application/json |
Rate this page: