a love letter to tangled (android, iOS, and a search API)
at main 18 lines 657 B view raw
1{{define "title"}}Documents &mdash; Twister API{{end}} 2{{define "content"}} 3<h1>Documents</h1> 4<p>The documents endpoint retrieves individual indexed records by their stable 5ID. Document IDs are returned in search results and have the form 6<code>did|collection|rkey</code>.</p> 7{{range .}}{{template "doc-entry" .}}{{end}} 8<h2>Errors</h2> 9<table> 10 <thead><tr><th>Status</th><th>Condition</th></tr></thead> 11 <tbody> 12 <tr><td>400</td><td>Missing or empty document ID.</td></tr> 13 <tr><td>404</td><td>Document not found or has been deleted.</td></tr> 14 <tr><td>500</td><td>Database error.</td></tr> 15 </tbody> 16</table> 17{{end}} 18{{template "layout" .}}