action pocketsmith_get_users_id_saved_searches { label: "List saved searches in user" description: "Lists saved searches belonging to a user by their ID." provider: pocketsmith method: GET path: "/users/{id}/saved_searches" encoding: json output: { type: "array" items: { type: "object" properties: { created_at: { type: "string" format: "ISO 8601 timestamp" description: "When the saved search was created." } id: { type: "integer" description: "The unique identifier of the saved search." } title: { type: "string" description: "The title of the saved search." } updated_at: { type: "string" format: "ISO 8601 timestamp" description: "When the saved search was last updated." } } } } }