-
Type:
Suggestion
-
Resolution: Unresolved
-
Component/s: Apps - Migration Assistant
Context
Forge remote allows apps outside Atlassian to call Atlassian services like so
const apiBaseUrl = 'https://api.atlassian.com/forge/storage/kvs'; export async function fetchFromStorage(token, apiBaseUrl) { const headers = { 'Accept': 'application/json', 'Authorization': `Bearer ${token}`, 'Content-Type': 'application/json' } return await fetch(`${apiBaseUrl}/v1/get`, { method: "POST", headers }); }
The App migration platform APIs does not currently support this kind of calls.
Suggestion
The Forge APIs defined here https://developer.atlassian.com/platform/app-migration/rest/v2/api-group-forge-resource/#api-group-forge-resource
are callable by Forge remotes