Is it possible to delete models using Anaplan Connect/API? A sample script would be much appreciated.
Hi, There is this Bulk Delete Models endpoint in Anaplan Transactional API https://anaplanbulkapi20.docs.apiary.io/#BulkDeleteModels . In API documentation there is sample CURL Script for model deletion.
Hello
The "Bulk Delete Models" endpoint in the Anaplan Transactional API provides a convenient way to remove multiple models in Anaplan using an API call. Here's a sample CURL script for model deletion:
curl -X DELETE https://api.anaplan.com/2/0/models/bulkDelete \ -H "Authorization: AnaplanAuthToken <YourAuthToken>" \ -H "Content-Type: application/json" \ -d '{ "modelIds": ["ModelID1", "ModelID2", "ModelID3"] }'
This script sends a DELETE request to the Anaplan API endpoint, passing the Anaplan Auth Token in the Authorization header and providing a JSON payload with the list of model IDs you want to delete. Make sure to replace <YourAuthToken> with your actual Anaplan Auth Token and update the "modelIds" list with the IDs of the models you want to delete. Refer https://www.anaplan.com/resources/datasheets/anaplan-api-for-data-integrations/ |Golang Certification
<YourAuthToken>
"modelIds"
Thank you.
A quick reminder of the Bulk Copy functionality. Bulk Copy allows you copy large volumes of data from one slice of a model to another in a single, optimised operation, instead of using formulas or imports. Use case: copy a version (RF1) into a prior year version (PY RF1) using a versions list to allow for year-on-year…
We are looking for Anaplan end-users to provide feedback on their experiences with the Excel add-in. Interested individuals will respond to this 5-minute survey to help us understand personal needs and behavior when using the add-in. The feedback provided by survey takers is essential to the roadmap of Anaplan's products.…
Anaplan Champions! The Community team just posted this announcement that certification badges may not be showing up on your profile probably until next year. Rest assured, you will get credit once you complete and pass the exams. https://community.anaplan.com/t5/Blog/Badges-Back-Soon/ba-p/123385