Exporting Spot IQ analysis
Hi I was wondering if there is a way to export spotiq analysis through api or other methods. Is there a tml file?
4 Replies
Hello @Josh Rosen : We don't have this capability yet, could you please file a feature request.
cc: @Nicolas @Himanshu Arora @Rahul P J P
Thank you for the quick response @Sandeep. Follow up question, is there a way to at least delete the Spot iq analysis using the apis? We are working on a model archiving solution and since the spot IQ is a dependent it must be deleted before the model can be deleted.
Yes, for deleting the spotiq analysis via APIs. Refer to the sample payload:
```curl -X POST \
--url 'https://hostname/api/rest/2.0/metadata/delete' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer XXX' \
--data-raw '{
"metadata": [
{
"identifier": "2343b39b-ded5-3412-854a-d3cee0a1d6cb" // GUID of the spotiq analysis
}
],
"delete_disabled_objects": false
}'
Thank you!