Skip to main content

Create an Index

Endpoint

POST https://api-indexly.ripplefy.net/index

Payload

ParameterTypeDescription
indexstringName of the index to be created.
schemaobjectJSON Schema describing the document structure.

Example

curl --location 'https://api-indexly.ripplefy.net/index' \
--header 'Content-Type: application/json' \
--data '{
"index": "index-name",
"schema": {
"ID": {"type": "string"},
"Name": {"type": "string"},
"Description": {"type": "string"},
...
}
}'