Hey team, We're experiencing an issue retrieving ...
# gooddata-cloud
v
Hey team, We're experiencing an issue retrieving exported files through the GoodData Cloud API. Below are the relevant details: • Export ID: f81dd54e9623741f3b034ca070a9489051433a76 • Trace ID: 0943838b974f8aaca0c9521a1b48066c The full response from the API: { "detail": "Server-side problem. Contact support.", "status": 500, "title": "Internal Server Error", "traceId": "0943838b974f8aaca0c9521a1b48066c" }
j
Hi Vansh, I can see the below error in our logs:
Copy code
HTTP response body: {"title":"Bad Request","status":400,"detail":"Parameter 'resultId' is required but is missing.","traceId":"6706962e7b7194945a88f84ca78ca31b"
This indicates that the resultId is not present in the body of your API call. Can you please double-check. You can get this ID from the first call to the endpoint:
api/v1/actions/workspaces/<workspaceID>/execution/afm/execute
And then use it while calling:
api/v1/actions/workspaces/<workspaceID>/export/tabular
Example body:
Copy code
{
  "format": "CSV",
  "fileName": "test_export",
  "executionResult": "d81ef7f09323429f13ecb9fb4cbd33dfd787e150:b27bbd615328e7b38b7e2286a03259f4e4314520fcf62fd34df53c8066c29a53"
}