Skip to content

2.16.0

Compare
Choose a tag to compare
@charcey charcey released this 25 Feb 18:32
· 23 commits to main since this release
187611c

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

Full Changelog: 2.15.0...2.16.0