Documents are objects composed of fields that can store any type of data. Each field contains an attribute and its associated value.
Documents are stored inside indexes. Learn more about documents.
Get one document using its unique id.
Variable | Description |
---|---|
index_uid | The index UID |
document_id | The document id |
{
"id": 25684,
"title": "American Ninja 5",
"poster": "https://image.tmdb.org/t/p/w1280/iuAQVI4mvjI83wnirpD8GVNRVuY.jpg",
"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.",
"release_date": "1993-01-01"
}
Get documents by batch.
Using the query parameters offset
and limit
, you can browse through all your documents.
::: note Documents are ordered by MeiliSearch depending on the hash of their id. :::
Variable | Description |
---|---|
index_uid | The index UID |
Query Parameter | Description | Default Value |
---|---|---|
offset | number of documents to skip | 0 |
limit | number of documents to take | 20 |
attributesToRetrieve | document attributes to show | * |
[
{
"id": 25684,
"release_date": "1993-01-01",
"poster": "https://image.tmdb.org/t/p/w1280/iuAQVI4mvjI83wnirpD8GVNRVuY.jpg",
"title": "American Ninja 5",
"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."
},
{
"id": 468219,
"title": "Dead in a Week (Or Your Money Back)",
"release_date": "2018-09-12",
"poster": "https://image.tmdb.org/t/p/w1280/f4ANVEuEaGy2oP5M0Y2P1dwxUNn.jpg",
"overview": "William has failed to kill himself so many times that he outsources his suicide to aging assassin Leslie. But with the contract signed and death assured within a week (or his money back), William suddenly discovers reasons to live... However Leslie is under pressure from his boss to make sure the contract is completed."
}
]
Add a list of documents or replace them if they already exist. If the provided index does not exist, it will be created.
If you send an already existing document (same id) the whole existing document will be overwritten by the new document. Fields previously in the document not present in the new document are removed.
For a partial update of the document see add or update documents.
If the provided index does not exist, it will be created.
Variable | Description |
---|---|
index_uid | The index UID |
Query Parameter | Description | Default Value |
---|---|---|
primaryKey | The primary key of the documents (optional) | none |
If you want to set the primary key of your index through this route, it only has to be done the first time you add documents to the index. After which it will be ignored if given.
The body is composed of a JSON array of documents.
[
{
"id": 287947,
"title": "Shazam",
"poster": "https://image.tmdb.org/t/p/w1280/xnopI5Xtky18MPhK40cZAGAOVeV.jpg",
"overview": "A boy is given the ability to become an adult superhero in times of need with a single magic word.",
"release_date": "2019-03-23"
}
]
{
"updateId": 1
}
This updateId
allows you to track the current update.
Add a list of documents or update them if they already exist. If the provided index does not exist, it will be created.
If you send an already existing document (same id) the old document will be only partially updated according to the fields of the new document. Thus, any fields not present in the new document are kept and remained unchanged.
To completely overwrite a document, check out the add or replace documents route.
If the provided index does not exist, it will be created.
Variable | Description |
---|---|
index_uid | The index UID |
If you want to set the primary key of your index through this route, it only has to be done the first time you add documents to the index. After which it will be ignored if given.
Query Parameter | Description | Default Value |
---|---|---|
primaryKey | The primary key of the documents (optional) | none |
The body is composed of a JSON array of documents.
[
{
"id": 287947,
"title": "Shazam ⚡️"
}
]
{
"updateId": 1
}
This updateId
allows you to track the current update.
Delete all documents in the specified index.
Variable | Description |
---|---|
index_uid | The index UID |
{
"updateId": 1
}
This updateId
allows you to track the current update.
Delete one document based on its unique id.
Variable | Description |
---|---|
index_uid | The index UID |
document_id | The document id |
{
"updateId": 1
}
This updateId
allows you to track the current update.
Delete a selection of documents based on array of document id's.
Variable | Description |
---|---|
index_uid | The index UID |
The body must be a JSON Array with the unique id's of the documents to delete.
[23488, 153738, 437035, 363869]
{
"updateId": 1
}
This updateId
allows you to track the current update.