Provides endpoints to retrieve active transfers and its migration details
Returns a list of latest active transfers (upto 100) with migration details
This request has no parameters.
OK
array<TransferMetadata>
1
2
3
curl --request GET \
--url 'https://your-site.atlassian.net/rest/atlassian-connect/1/migration/transfer/recent' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[
{
"migrationDetails": {
"cloudUrl": "https://www.destination-cloudsite.com",
"confluenceClientKey": "847e2ce1-34e0-4b3d-a487-344f3d0b2909",
"createdAt": 1702530783417,
"jiraClientKey": "fbc7b56e-82fd-4c43-a73b-854fa668ec49",
"migrationId": "fd2b0ea1-3e68-464e-86d7-8f34a3441c2f",
"migrationScopeId": "0bba5d1d-7b51-4e85-a6e2-31745aa65849",
"name": "My test migration"
},
"transferId": "2e170ff3-6aa6-4969-a08a-e60119ef2db3",
"status": "IN_PROGRESS"
}
]
Returns containers for a given container type
string
Requiredstring
Requiredstring
integer
OK
1
2
3
curl --request GET \
--url 'https://your-site.atlassian.net/rest/atlassian-connect/1/migration/container/{transferId}/page?containerType={containerType}' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
{
"containers": {},
"meta": {
"hasNext": true,
"lastEntity": "<string>",
"pageSize": 2154
}
}
Rate this page: