• Notification API
  • Status API
  • Mapping API
  • App data retrieval API
  • Transfer retrieval API
  • Feedback channel API
  • Error retrieval API
Platform
App migration platform / Reference / REST API

Mapping API

Postman Collection
OpenAPI

Provides endpoints to retrieve mappings

POST

Get mappings by keys

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

Forge and OAuth2 apps cannot access this REST resource.

Request

Path parameters

transferId

string

Required

Query parameters

namespace

string

Required

Request bodyapplication/json

keys

array<string>

Responses

OK

application/json

MigrationMappingItem
POST/mapping/{transferId}/find
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>" ]'
200Response
1 2 3 { "additionalProperties": "<string>" }
GET

Get mappings in pages

Returns mappings for a given namespace

Forge and OAuth2 apps cannot access this REST resource.

Request

Path parameters

transferId

string

Required

Query parameters

namespace

string

Required
lastEntity

string

pageSize

integer

Responses

OK

application/json

MigrationMappingDto
GET/mapping/{transferId}/page
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'
200Response
1 2 3 4 5 6 7 8 9 10 { "items": { "additionalProperties": "<string>" }, "meta": { "hasNext": true, "lastEntity": "<string>", "pageSize": 2154 } }

Rate this page: