Please add better documentation around the behavior of status code 422 for Create Time Series. Specifically, I’d like these questions answered:
- When multiple external ids are given and some are duplicate and some are not, will the time series that are not duplicates be inserted and will these created ids be returned in the response?
- Does this function similar to datapoints where create is actually create or update and the duplicates are updated with the data provided? If not, what is the recommended pattern for create or update of time series entities through the API?
I am aware of advice here around “EAFP vs LBYL”, but I am in a case where 98% of the time the time series will not exist and I’d like to optimize for this case. Thanks!