save_query
Persist a validated satellite search as a reusable query and receive a slug for later download or cart actions, avoiding repeated searches.
Instructions
Persist a search as a saved query and return a reusable slug.
Takes the same arguments as search_scenes, plus an optional name and description. Unlike search_scenes (which is stateless and leaves nothing behind), this saves the search on the portal so it can be acted on later: the returned slug is what downloading and cart staging key off. Call this once the user has confirmed a search returns the scenes they want, then hand the slug to the bhd CLI (download / cart) until those actions land in-server.
Returns status="ok" with the slug and the shaped saved query. If the satellite is ambiguous or the request is invalid, returns the same status="ambiguous_satellite" / "invalid_request" shapes as search_scenes, and saves nothing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lat | No | ||
| lon | No | ||
| maxx | No | ||
| maxy | No | ||
| minx | No | ||
| miny | No | ||
| name | No | ||
| sensor | No | ||
| product | No | ||
| end_date | Yes | ||
| radius_km | No | ||
| satellite | Yes | ||
| start_date | Yes | ||
| description | No |