Hello, how can I delete all the time series of a dataset with python sdk?
Solved
Delete time series SDK Python
Best answer by Håkon V. Treider
You can first list all the time series in a data set, then convert them to a list of ids that you then delete:
tss = client.time_series.list(data_set_ids=123456, limit=None)
client.time_series.delete(id=tss.as_ids())
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.