Rate this page:
Provides endpoints to retrieve mappings
POST /rest/atlassian-connect/1/migration/mapping/{transferId}/find
Retrieves mappings for a specific namespace filtering by the keys provided on the payload
string
Transfer ID as UUID
uuid
string
Namespace
Content type | Value |
---|---|
application/json | Array<string> |
1 2 3 4 5 6 7
curl --request POST \
--url 'https://your-site.atlassian.net/rest/atlassian-connect/1/migration/mapping/{transferId}/find?namespace={namespace}' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '[
"<string>"
]'
OK
Content type | Value |
---|---|
application/json |
GET /rest/atlassian-connect/1/migration/mapping/{transferId}/page
Returns mappings for a given namespace
string
transferId
uuid
string
namespace
string
lastEntity
integer
pageSize. See the deprecation notice for upcoming change in page size.
5000
, Minimum: 1
, Maximum: 5000
1 2 3
curl --request GET \
--url 'https://your-site.atlassian.net/rest/atlassian-connect/1/migration/mapping/{transferId}/page?namespace={namespace}' \
--header 'Accept: application/json'
OK
Content type | Value |
---|---|
application/json |
Rate this page: