Interactions
Remove a specific interaction from the specified database.
Request
The ID of the database to operate on
Body Params application/json
If provided, only delete the interaction with this specific timestamp
{
"user_id": "string",
"item_id": "string",
"action": "string",
"timestamp": 0
}
Request samples
curl --location --request DELETE 'https://api.recomms.ai//interactions' \
--header 'Content-Type: application/json' \
--data-raw '{
"user_id": "string",
"item_id": "string",
"action": "string",
"timestamp": 0
}'
Responses
{
"status": "success",
"deleted_rows": 0
}
Modified at 2025-03-13 16:59:43