Firebase Migration
Firebase Migration API
This API provides a way to migrate your existing Firebase Dynamic Links in bulk to Apliko Link. All endpoints on this page use Server API Key authentication. See the Authentication section for more details.
API Environment
https://sandbox-api.apliko.linkMigrate Links
This endpoint allows you to submit a batch of up to 100 Firebase Dynamic Links to be migrated. The system will process them and return the results for each link.
POST/v1/firebase/migrate/migrate
Request Body
The request body should contain a JSON object with a links key, which is an array of Firebase Dynamic Link URLs.
json
{
"links": [
"https://example.page.link/link1",
"https://example.page.link/link2"
]
}Live API Console
Modify the request and hit send to try the API.
bash
curl -X POST "https://sandbox-api.apliko.link/v1/firebase/migrate/migrate" \
-H "X-API-KEY: YOUR_SERVER_API_KEY" \
-H "Content-Type: application/json" \
-d '
{
"links": [
"https://example.page.link/link1",
"https://example.page.link/link2"
]
}
'Response
The API will respond with a summary of the migration, including the total count of processed links and a detailed result for each link, indicating its migration status.
json
{
"count": 2,
"results": [
{
"sourceLink": "https://example.page.link/link1",
"migratedLink": "https://new.nvgt.link/abcd",
"status": "success"
},
{
"sourceLink": "https://example.page.link/link2",
"status": "failed",
"error": "Invalid Firebase link"
}
]
}