Interaction Delete API

The endpoint will delete users' interaction data entirely from the log of interactions you have uploaded to Miso. Use this API to comply with a user's data removal request, that is, the right to be forgotten. Once a user's interactions are deleted, we will not be able to recover them, and they will no longer contribute to model training.

Body·
required
application/json
  • user_ids
    Type: array string[] · User Ids
    required
Responses
  • application/json
  • application/json
Request Example for delete/v1/interactions
curl 'https://api.askmiso.com/v1/interactions?api_key=YOUR_SECRET_TOKEN' \
  --request DELETE \
  --header 'Content-Type: application/json' \
  --data '{
  "user_ids": [
    ""
  ]
}'
{
  "message": "success"
}