Updated API (markdown)

fhimpg 2022-08-17 11:13:57 +02:00
parent c1c45262f5
commit 500906094b

26
API.md

@ -113,6 +113,32 @@ Get complet entry with metadata, document list and link list and raw field names
} }
``` ```
# bulk
Get multiple entries at once
`curl -s -d '{"token":"MYSECRETTOKEN"}' https://my.domain/v1/bulk/d123,d124,d125`
```json
[
{
"success": 1,
"id": "D123",
...
},
{
"success": 1,
"id": "D124",
...
},
{
"success": 1,
"id": "D125",
...
}
]
```
# list # list
Get list of all entries. Get list of all entries.