Provides endpoints to access files exported from the server (files not exported as part of the migration)
Returns all uploaded data keys for a transferId
string
RequiredOK
array<UploadedDataDto>
1
2
3
curl --request GET \
--url 'https://your-site.atlassian.net/rest/atlassian-connect/1/migration/data/{transferId}/all' \
--header 'Accept: application/json'
1
2
3
4
5
6
[
{
"label": "<string>",
"s3Key": "<string>"
}
]
Returns an object containing a signed url to retrieve app data
string
RequiredOK
1
2
3
curl --request GET \
--url 'https://your-site.atlassian.net/rest/atlassian-connect/1/migration/data/{s3Key}' \
--header 'Accept: application/json'
1
2
3
{
"url": "<string>"
}
Rate this page: