2.16.0
Subscriptions API Summary Endpoints Support
We're excited to announce the support of two new Subscriptions API endpoints in v2.16! You can now summarize subscription statuses and subscription result statuses to better track all your subscriptions or a single subscription.
Using the CLI:
planet subscriptions summarize // to summarize the status of all subs the requester has created
planet subscriptions summarize --subscription-id={SUB_ID} // to summarize the status of _results_ for the provided subscription
Python SDK:
from planet import Planet
pl = Planet()
# to summarize the status of all subs the requester has created
summary = pl.subscriptions.get_summary()
# to summarize the status of _results_ for the provided subscription
subscription_summary = pl.subscriptions.get_subscription_summary(SUB_ID)
The follow docs are available:
Please open an issue to report bugs or provide feedback.
What's Changed
- Add support for new subscriptions summary endpoints by @charcey in #1098
- fix notes for features api docs by @stephenhillier in #1099
- fix docstring in get_subscription_summary client function by @charcey in #1100
Full Changelog: 2.15.0...2.16.0