Request to retrieve data from view is not initiated
I want to import data from Anaplan to Azure, but the request to import data from view is not initiated.
Also, it happens sometimes erratically.
I would like to automate this process through a pipeline and would like to solve this problem.
Since the request is not initiated, there are zero pages available for download after waiting 30 minutes.
Do you know this solution?
Answers
-
I am not sure where your screenshots are from, but they seem to be the initial request, right? So for example:
curl --location --request POST 'https://api.anaplan.com/2/0/workspaces/2c9ba1b673981e510173d99b11722e1e/models/61F974EB186D40C1A66B7D309AD714B8/views/101000000000/readRequests/' \ --header 'Authorization: AnaplanAuthToken AnaplanToken' \ --header 'Accept: application/json' --data-raw '{ "exportType" : "TABULAR_MULTI_COLUMN" }'
You get a response like this:
{ "meta": { "schema": "https://api.anaplan.com/2/0/objects/viewReadRequest" }, "status": { "code": 200, "message": "Success" }, "viewReadRequest": { "requestId": "0A06B0739F0E47BB92E2326C603D86EC", "requestState": "IN_PROGRESS", "url": "https://api.anaplan.com/2/0/workspaces/{workspaceId}/models/{modelId}/views/{viewId}/readRequests/{requestId}" } }
And you retrieve the status of the request with the URL in the response, right?
There is indeed athe following comment "If the request is just submitted and not started the response resembles:", but there is no explanation about when it happens. I guess you need to contact support for this.
Kind regards,
Steven
0