-
Type:
Suggestion
-
Resolution: Unresolved
-
Component/s: Space - Import from other tools (3rd party)
-
None
-
1
Issue Summary
When using the Confluence Miro bulk import feature, the UI instructs users to copy the Space ID from the Miro dashboard URL (e.g., /space/1MuWIQTTGB62RODzuk31FO). However, Miro has recently renamed "Projects" to "Spaces" in their UI and now uses an alphanumeric slug in the URL for routing. The Miro API still expects the original numeric Project ID for the project_id parameter.
This mismatch causes the import to fail with a 400 Bad Request error from the Miro API, as the alphanumeric slug is not accepted. Users following the UI instructions are unable to complete their imports.
Steps to Reproduce
- Go to the Confluence Miro import page.
- Follow the UI instructions to copy the Space ID from the Miro dashboard URL.
- Attempt to import boards using this value.
- Observe that the import fails with a 400 error.
Expected Results
The UI should instruct users to provide the numeric Project ID required by the Miro API, or provide a way to retrieve it easily.
Actual Results
The UI instructs users to enter the alphanumeric slug from the URL, which is rejected by the API.
Workaround
- Open any board in the target space in Miro.
- Copy the Board ID from the URL.
- Visit https://api.miro.com/v2/boards/\{board_id} while logged into Miro.
- Find the numeric "id" under the "project" object in the JSON response.
- Use this numeric ID in the import UI.