Provides endpoints to retrieve mappings
Retrieves mappings for a specific namespace filtering by the keys provided on the payload
string
Requiredstring
Requiredkeys
array<string>
OK
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>"
]'
1
2
3
{
"additionalProperties": "<string>"
}
Returns mappings for a given namespace
string
Requiredstring
Requiredstring
integer
OK
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'
1
2
3
4
5
6
7
8
9
10
{
"items": {
"additionalProperties": "<string>"
},
"meta": {
"hasNext": true,
"lastEntity": "<string>",
"pageSize": 2154
}
}
Rate this page: