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.
Can someone help me i am unable to login anaplan portal using my credentials
Dear Hive Mind, Do we have a way to get the history of a particular List Item, from its creation into a model up until its removal ? I am trying to chase when / how an item has been added into a model and how / when it would have been deleted and then recreated with the same code. Is there a pattern (manual or API) to getβ¦
I have an action in a process which is getting failed since 2 days when run via CloudWorks with below error . No issues when run manually . Same error occurs when run manually but as a warning "Import complete but with failures" This action is running since almost a year without any issue . No change has been made toβ¦