list_notes
Notlar · macOS
Etki: okuma. Durum: koşullu kullanılabilir.
“Koşullu kullanılabilirlik”, aracın sürüme, platforma, izinlere, hesaba veya yapılandırmaya bağlı olabileceğini belirtir. Her kurulumda etkin olduğu anlamına gelmez.
macOS
Amaç
Apple Notes uygulamasındaki notları listeler. İsteğe bağlı olarak klasöre göre filtreler. Sayfalandırılmıştır: `limit` çağrı başına en fazla 500 olabilir; daha yüksek bir sınır istemek yerine `offset` ile sayfalayın (`offset`=500, 501-1000 arasındaki notları döndürür). Yanıt `total` (tüm eşleşen notların sayısı) ve `has_more` (bu sayfadan sonra başka sonuç olup olmadığı) alanlarını içerir; böylece her şeyi alıp almadığınızı tahmin etmeniz gerekmez. `total_is_estimated` sayının yalnızca alt sınır olduğunu söylese bile kesin sonuç için `has_more` false olana kadar sayfalayın. TÜM kitaplığı okumak için order="id" iletin; order parametresinin açıklamasına bakın.
Zorunlu girdiler
Bu platformun şeması zorunlu girdi bildirmiyor. İsteğe bağlı seçiciler veya çalışma zamanı gereksinimleri yine de olabilir.
İzinler ve onay
Şema açık bir onay parametresi bildirmez. Bu, izinsiz işlem yapma yetkisi vermez; etkiyi inceleyin ve yetki alın.
- Yalnızca kullanıcının bu platformda yetkilendirdiği uygulamaları, hesapları ve kaynakları kullanın. Bağlantı ve izin gereksinimleri için bu aracın platforma özgü açıklamasına bakın; bu katalog ek OAuth kapsamları veya OS yetkileri bulunduğunu ileri sürmez.
İngilizce kanonik teknik şema — macOS
{
"properties": {
"folder": {
"type": "string"
},
"limit": {
"default": "50",
"description": "Notes per page (default 50, capped at 500). To get more, page with offset.",
"type": "integer"
},
"offset": {
"default": "0",
"description": "How many notes to skip (default 0). offset=500 with limit=500 returns notes 501-1000. An offset past the end returns an empty page with has_more=false, not an error.",
"minimum": 0,
"type": "integer"
},
"order": {
"default": "modified",
"description": "order: \"modified\" (default) sorts newest-modified first — what you want to SHOW someone, but NOT safe for paging: modification date changes, so a note edited between two calls jumps to the front and another note is pushed past your cursor and never returned. \"id\" sorts by the note's immutable store id — stable, never renumbered, new notes append at the end — so use order=\"id\" to walk an entire library page by page: edits and insertions mid-crawl are safe with it. One case it cannot cover, because pages are addressed by offset: if a note is DELETED mid-crawl, every note after the hole shifts one slot back and the note that was on the page boundary is skipped, silently. If completeness matters, re-run the crawl and reconcile against total, or crawl while nothing is deleting notes.",
"type": "string"
}
},
"type": "object"
}Belge örneği
list_notes için örnek belge. Bu örneği çalıştırmayın. Gösterilen bağımsız değişkenler kurgusal bir veri kümesine aittir; gerçek bir çağrıdan önce gerçek tanıtıcıları bulun ve izin alın.
{
"limit": 5
}