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.
I am attempting to connect to an azure SQL database vis at the MSSQL connector in data orchestrator but am having issues and I believe it is due to hyphens in database name (which is a fairly standard naming convention I will note!) Example below (fake credentials) - has anyone else encountered similar and is there a way…
Hi, for some reason my shipping costs are the same over every month and I don't know what to do to fix it.
Hello folks, Does anyone know how to work around the Polaris limitation of using the Formula or Ratio summary method alongside the Closing Balance within the same line item? I have a Business Unit list where the total (All BUs) must display the Corporate (1 of 20 leaf items under All BUs total) number of Unique Customers.…