Path parameters
-
defines the collection on which you want to call the operation (e.g users)
-
defines the name of the index to query data on (most times you will need _id)
-
defines the value of the index to query data on
DELETE
/data/{collectionName}/{indexName}/{indexValue}
curl \
--request DELETE 'https://api.universecloud.io/data/users/_id/64a1cc789f556f7ce46c576b' \
--header "X-Api-Key: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"filter":{"additionalProperty1":"string","additionalProperty2":"string"},"authField":"string"}'
Request examples
{
"filter": {
"additionalProperty1": "string",
"additionalProperty2": "string"
},
"authField": "string"
}