list_saved_searches
List all saved searches for the account.
list_saved_searches
List all saved searches for the account.
Safety class: C · API type: portal · Min version: —
ConfinementClass C: read-only; this lists ACCOUNT-wide saved searches (not folder-scoped). Non-prod only.
Signatures
def list_saved_searches(sdk):
"""List all saved searches for the account; return the list or None."""
return sdk.get_saved_searches()export async function listSavedSearches(sdk) {
// List all saved searches for the account.
return await sdk.getSavedSearches();
}Parameters
| Parameter (Python) | Parameter (JS) | Type | Required | Notes |
|---|---|---|---|---|
sdk | sdk | Nomad_SDK | yes |
Returns
list[dict] | None — all saved searches; may be empty/None.
Errors
- 401 unauthenticated
- InvalidAPITypeException on a non-portal session
See also: Python ↔ JS naming map · Return shapes.
