curl $UPSTASH_VECTOR_REST_URL/resumable-query-end \
-X POST \
-H "Authorization: Bearer $UPSTASH_VECTOR_REST_TOKEN" \
-d '{
"uuid": "550e8400-e29b-41d4-a716-446655440000"
}'
{
"result": "Success"
}
Resumable Query
Stop Resumable Query
Ends a resumable query and releases associated resources.
POST
/
resumable-query-end
curl $UPSTASH_VECTOR_REST_URL/resumable-query-end \
-X POST \
-H "Authorization: Bearer $UPSTASH_VECTOR_REST_TOKEN" \
-d '{
"uuid": "550e8400-e29b-41d4-a716-446655440000"
}'
{
"result": "Success"
}
Request
string
required
The unique identifier of the resumable query to end.
Response
string
A success message indicating the query was ended.
curl $UPSTASH_VECTOR_REST_URL/resumable-query-end \
-X POST \
-H "Authorization: Bearer $UPSTASH_VECTOR_REST_TOKEN" \
-d '{
"uuid": "550e8400-e29b-41d4-a716-446655440000"
}'
{
"result": "Success"
}
Was this page helpful?