Jhonatan Teixeira
04/16/2026, 10:33 AMkapa.ai
04/16/2026, 10:33 AMhttps://learnamptesting.learnamp.com to https://learnamp.cloud.gooddata.com are being blocked because no Access-Control-Allow-Origin header is present. This is a CORS configuration issue, not a platform-wide outage. What to do right now 1. Add your domain to the allowed origins list
Go to your GoodData homepage ā Developer settings ā Cross-origin resource sharing (CORS) ā Manage, then add https://learnamptesting.learnamp.com exactly as it appears. [CORS setup docs]
Alternatively, you can do this via the API:
curl -v -X PATCH -H 'Content-type: application/vnd.gooddata.api+json' \
-H "Authorization: Bearer <token>" \
-d @organization.json $HOST_URL/api/v1/entities/admin/organizations/<organization_id>
where organization.json contains:
{
"data": {
"attributes": {
"allowedOrigins": [
"https://learnamptesting.learnamp.com"
]
},
"id": "<organization_id>",
"type": "organization"
}
}
[CORS setup docs]
2. Things to double-check
⢠The origin URL must be exact ā no trailing slash, correct subdomain.
⢠Use PATCH, not PUT, when updating via the API.
⢠If you want to cover multiple subdomains (e.g., *.learnamp.com), wildcards are supported but only match third-level and consecutive subdomains. [CORS troubleshooting]
⢠Verify your organization ID is correct ā using an incorrect ID will return a 404.
A similar case was resolved quickly by updating CORS settings. [past CORS incident] If the issue persists after updating the CORS settings, please open a support ticket at https://support.gooddata.com with your organization ID, the failing URLs, and any Trace IDs from the Network tab in your browser dev tools. š 0 button š 0 button ā¹ļø Tip: Mention @kapa.ai in the thread for follow-ups.
š Our Support team monitors all messages and will jump in if needed.Jhonatan Teixeira
04/16/2026, 10:36 AMJulius Kos
04/16/2026, 10:40 AMJhonatan Teixeira
04/16/2026, 10:46 AMJulius Kos
04/16/2026, 10:47 AMJhonatan Teixeira
04/16/2026, 10:49 AMJhonatan Teixeira
04/16/2026, 10:49 AMJulius Kos
04/16/2026, 10:50 AMJhonatan Teixeira
04/16/2026, 11:02 AMJulius Kos
04/16/2026, 11:02 AMJhonatan Teixeira
04/16/2026, 11:04 AMJhonatan Teixeira
04/16/2026, 11:04 AMJulius Kos
04/16/2026, 11:06 AMJulius Kos
04/16/2026, 3:36 PMThere was an update to our networking infrastructure, which included improvements to the authentication layer. While no issues were expected as part of this change, we identified a bug that caused data synchronization to not complete properly for some organizations. We have since resolved the issue and everything should be in order now.