You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default this displays the first 100 results. As with other commands, you can use the `--limit` param to
229
229
set a higher limit, or set it to 0 to see all results (this can be quite large with subscriptions results).
230
230
231
-
You can also filter by status:
231
+
#### Filtering Results
232
+
233
+
The `results` command supports filtering on several fields:
234
+
235
+
*`--status`: Filter on the status of results. Status options include `created`, `queued`, `processing`, `failed`, and `success`. Multiple status args are allowed.
236
+
*`--created`: Filter results by creation time or an interval of creation times.
237
+
*`--updated`: Filter results by update time or an interval of update times.
238
+
*`--completed`: Filter results by completion time or an interval of completion times.
239
+
*`--item-datetime`: Filter results by item datetime or an interval of item datetimes.
240
+
241
+
Datetime args (`--created`, `--updated`, `--completed`, and `--item-datetime`) can either be a date-time or an interval, open or closed. Date and time expressions adhere to RFC 3339. Open intervals are expressed using double-dots.
242
+
243
+
* A date-time: `2018-02-12T23:20:50Z`
244
+
* A closed interval: `2018-02-12T00:00:00Z/2018-03-18T12:31:12Z`
245
+
* Open intervals: `2018-02-12T00:00:00Z/..` or `../2018-03-18T12:31:12Z`
To see results for imagery captured after a specific date:
270
+
271
+
```sh
272
+
planet subscriptions results SUBSCRIPTION_ID \
273
+
--item-datetime 2024-01-01T00:00:00Z/..
274
+
```
275
+
237
276
See the Subscriptions API documentation for the [official list of available statuses](https://docs.planet.com/develop/apis/subscriptions/#states--status-descriptions).
0 commit comments