curl --location --request POST 'https://app.zappway.ai/api/datastores/upsert/<datastoreId>' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <API_KEY>' \
--data-raw '{
"documents": [
"text": "Lorem Ipsum...",
"name": "My Document",
"metadata": {
"source" : "https://en.wikipedia.org/wiki/Lorem_ipsum",
"author": "John Doe",
"date": "2021-01-01",
}
]
}'
{
"ids": ["60f9b9f0-0b1a-11ec-9a03-0242ac130003"]
}
This endpoint allows you to add a new Datasource in a Datastore
curl --location --request POST 'https://app.zappway.ai/api/datastores/upsert/<datastoreId>' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <API_KEY>' \
--data-raw '{
"documents": [
"text": "Lorem Ipsum...",
"name": "My Document",
"metadata": {
"source" : "https://en.wikipedia.org/wiki/Lorem_ipsum",
"author": "John Doe",
"date": "2021-01-01",
}
]
}'
{
"ids": ["60f9b9f0-0b1a-11ec-9a03-0242ac130003"]
}
The id of the datastore you want to access.
The IDs of the documents that were created.
curl --location --request POST 'https://app.zappway.ai/api/datastores/upsert/<datastoreId>' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <API_KEY>' \
--data-raw '{
"documents": [
"text": "Lorem Ipsum...",
"name": "My Document",
"metadata": {
"source" : "https://en.wikipedia.org/wiki/Lorem_ipsum",
"author": "John Doe",
"date": "2021-01-01",
}
]
}'
{
"ids": ["60f9b9f0-0b1a-11ec-9a03-0242ac130003"]
}