I have successfully obtained the authentication token and retrieved the list of models using the API.
However, I am unsure how to retrieve the list of apps and pages within a specific model.
Could you please provide guidance on how to achieve this?
Hello @ geometry dash lite, to get the list of apps within a specific model, you'll need to make a GET request to the Anaplan API endpoint for apps. The endpoint format is as follows:
GET https://api.anaplan.com/2/0/models/{modelId}/apps
{modelId}
GET /2/0/models/{modelId}/apps HTTP/1.1Host: api.anaplan.comAuthorization: Bearer {your_auth_token}Content-Type: application/json
Step 2: Retrieve the List of Pages
Once you have the app information, you'll want to retrieve the pages associated with those apps. Use the following endpoint format to get pages:
GET https://api.anaplan.com/2/0/models/{modelId}/apps/{appId}/pages
{appId}
Example Request to Retrieve Pages
GET /2/0/models/{modelId}/apps/{appId}/pages HTTP/1.1Host: api.anaplan.comAuthorization: Bearer {your_auth_token}Content-Type: application/json
Step 3: Handling the Response
After making the requests, handle the JSON response to extract the list of apps and pages. The response will typically contain the necessary information, such as app IDs, page IDs, and other relevant metadata.
Hi @rebeccachurch ,
I am tried to retrieve the list of Apps with the API calls described above including the following Header and I got the following error, looks like the API call does not exists:
Could you provide more info from your API call
@joseantonio.galindo I also have the same issue, unable to pull the apps through the API. There is a workaround though. Just sign into Anaplan, then navigate to this URL:
view-source:https://us1a.app.anaplan.com/a/springboard-definition-service/apps
You can save it as a JSON file and it has all the app information in it. Not ideal, but it is a workaround.
We have an Anaplan model that uses "Fake Time" - that is a time dimension specifically constructed for the application and not one found native to Anaplan. For this reason the Opening / Closing Balance summaries don't work. We would like to be able to show the opening and closing balance at the beginning end of each weekly…
Hello everyone, We are trying to use Anaplan Connect in order to push data from a dwh to Anaplan Data Hub. To do so, we need an authentication by token. We can't make it work, we receive the following error: ERROR 16020 |-- Anaplan API: Invalid key path Any suggestions? Thank you all in advance for the help! Michele
Has anyone found success using Anaplan XL with Polaris models in a shared drive with or without concurrent users? My team has experienced a variety of errors, login failures, etc. sometimes it works, sometimes it doesn't. We've been recommended to save and edit files locally, which helps but certainly with its limitations…