Notification API
Status API
Mapping API
App data retrieval API
Transfer retrieval API
Feedback channel API
Error retrieval API

Rate this page:

Mapping API

Provides endpoints to retrieve mappings

Get mappings by keys

POST /rest/atlassian-connect/1/migration/mapping/{transferId}/find

Retrieves mappings for a specific namespace filtering by the keys provided on the payload

Request

Path parameters
transferId Required

string

Transfer ID as UUID

Format: uuid
Query parameters
namespace Required

string

Namespace

Body parameters
Content typeValue
application/json

Array<string>

Example

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>"
]'

Responses

OK

Content typeValue
application/json

object

Get mappings in pages

GET /rest/atlassian-connect/1/migration/mapping/{transferId}/page

Returns mappings for a given namespace

Request

Path parameters
transferId Required

string

transferId

Format: uuid
Query parameters
namespace Required

string

namespace

lastEntity

string

lastEntity

pageSize

integer

pageSize. See the deprecation notice for upcoming change in page size.

Default: 5000, Minimum: 1, Maximum: 5000

Example

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'

Responses

OK

Content typeValue
application/json

MigrationMappingDto

Rate this page: