Skip to content
This repository was archived by the owner on Mar 21, 2024. It is now read-only.

Commit d97203f

Browse files
committed
update open-api
1 parent 174cafd commit d97203f

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

open-api.yaml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1664,6 +1664,7 @@ paths:
16641664
- $ref: '#/components/parameters/limit'
16651665
- $ref: '#/components/parameters/offset'
16661666
- $ref: '#/components/parameters/fields'
1667+
- $ref: '#/components/parameters/filter'
16671668
post:
16681669
operationId: indexes.documents.create
16691670
summary: Add or replace documents
@@ -1805,6 +1806,65 @@ paths:
18051806
description: Not Found
18061807
parameters:
18071808
- $ref: '#/components/parameters/indexUid'
1809+
'/indexes/{indexUid}/documents':
1810+
post:
1811+
operationId: indexes.documents.list
1812+
summary: Get Documents
1813+
description: |
1814+
Get [documents](https://docs.meilisearch.com/learn/core_concepts/documents.html) by batch.
1815+
tags:
1816+
- Documents
1817+
security:
1818+
- apiKey: []
1819+
responses:
1820+
'200':
1821+
description: Ok
1822+
content:
1823+
application/json:
1824+
schema:
1825+
type: object
1826+
properties:
1827+
results:
1828+
type: array
1829+
items:
1830+
$ref: '#/components/schemas/document'
1831+
limit:
1832+
$ref: '#/components/schemas/limit'
1833+
offset:
1834+
$ref: '#/components/schemas/offset'
1835+
total:
1836+
$ref: '#/components/schemas/total'
1837+
required:
1838+
- results
1839+
- limit
1840+
- offset
1841+
- total
1842+
examples:
1843+
Example:
1844+
value:
1845+
results:
1846+
- id: 25684
1847+
title: American Ninja 5
1848+
poster: 'https://image.tmdb.org/t/p/w1280/iuAQVI4mvjI83wnirpD8GVNRVuY.jpg'
1849+
overview: 'When a scientists daughter is kidnapped, American Ninja, attempts to find her, but this time he teams up with a youngster he has trained in the ways of the ninja.'
1850+
release_date: 725846400
1851+
- id: 45881
1852+
title: The Bridge of San Luis Rey
1853+
poster: 'https://image.tmdb.org/t/p/w500/4X7quIcdkc24Cveg5XdpfRqxtYA.jpg'
1854+
overview: "The Bridge of San Luis Rey is American author Thornton Wilder's second novel, first published in 1927 to worldwide acclaim. It tells the story of several interrelated people who die in the collapse of an Inca rope-fiber suspension bridge in Peru, and the events that lead up to their being on the bridge.[ A friar who has witnessed the tragic accident then goes about inquiring into the lives of the victims, seeking some sort of cosmic answer to the question of why each had to die. The novel won the Pulitzer Prize in 1928."
1855+
release_date: 1072915200
1856+
limit: 20
1857+
offset: 0
1858+
total: 2
1859+
'401':
1860+
$ref: '#/components/responses/401'
1861+
'404':
1862+
description: Not Found
1863+
parameters:
1864+
- $ref: '#/components/parameters/limit'
1865+
- $ref: '#/components/parameters/offset'
1866+
- $ref: '#/components/parameters/fields'
1867+
- $ref: '#/components/parameters/filter'
18081868
'/indexes/{indexUid}/documents/delete-batch':
18091869
post:
18101870
operationId: indexes.documents.removeBatch

0 commit comments

Comments
 (0)