Collections in WetroCloud store indexed resources for retrieval and query operations. Deleting a resource can help remove outdated data.

When to Use the Remove Endpoint

Use the /resource/remove/ endpoint when:

  • A resource has served its purpose and is no longer relevant to the collection.
  • Data in a resource needs be removed.

To remove resource from a collection, send a DELETE request to the /resource/remove/ endpoint with the required parameters in the body.

Required Parameters

ParameterTypeDescription
collection_idStringThe unique ID of the collection the resource belongs too
resource_idStringThe unique ID of the resource to delete.

Request Example

curl --request DELETE \

    --url https://api.wetrocloud.com/v1/resource/remove/ \

    --header 'Authorization: Token <api-key>'

    --form 'collection_id=<collection_id>' \

    --form 'resource_id=<resource_id>' \

Successful Response

Upon successful deletion, the endpoint returns a success flag.

Example Response

{

  "success": true

}
FieldDescription
successIndicates whether the deletion was successful.