curl --request PUT \
--url https://documents.absconsulting.com/v1/vector_stores/{vector_store_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"metadata": {}
}
'{
"id": "<string>",
"object": "<string>",
"name": "<string>",
"created_at": 123,
"expires_at": 123,
"metadata": {}
}Modify a vector store’s name and metadata.
This endpoint has a rate limit of 60 requests per user per minute.
curl --request PUT \
--url https://documents.absconsulting.com/v1/vector_stores/{vector_store_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"metadata": {}
}
'{
"id": "<string>",
"object": "<string>",
"name": "<string>",
"created_at": 123,
"expires_at": 123,
"metadata": {}
}Bearer token for authentication
The ID of the vector store.
The name of the vector store. Must be between 1 and 63 characters long. Can only contain letters, numbers, hyphens, and underscores.
A set of up to 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format, and querying for objects. Keys are strings with a maximum length of 64 characters. Values are strings with a maximum length of 512 characters.
Show child attributes
Successful Response
The ID of the vector store.
The type of object.
The name of the vector store.
The timestamp when the vector store was created.
The timestamp when the vector store will expire.
The metadata of the vector store.
Show child attributes
Was this page helpful?