Rate this page:
Provides endpoints to retrieve active transfers and its migration details
GET /rest/atlassian-connect/1/migration/transfer/recent
Returns a list of latest active transfers (upto 100) with migration details available for the provided cloudAppKey
1 2 3
curl --request GET \
--url 'https://your-site.atlassian.net/rest/atlassian-connect/1/migration/transfer/recent' \
--header 'Accept: */*'
OK
Content type | Value |
---|---|
*/* | Array<TransferMetadata> |
GET /rest/atlassian-connect/1/migration/container/{transferId}/page
Returns containers for a given container type
string
transferId
uuid
string
type of container
Valid values: ConfluenceSpace
, JiraProject
, Site
string
lastEntity
string
integer
pageSize
250
, Minimum: 1
, Maximum: 250
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'
OK
Content type | Value |
---|---|
application/json |
Rate this page: