Bulk delete sentinel activities

POST /api/sentinel-activities/delete

Remove sentinel activity reports based on the provided target value(identifier).Use this endpoint to unblock users who may be locked out due to too many failed authentication attempts.

application/json

Body Required

Responses

POST /api/sentinel-activities/delete
curl \
 --request POST 'https://[tenant_id].logto.app/api/sentinel-activities/delete' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"targetType":"User","targets":["string"]}'
Request examples
{
  "targetType": "User",
  "targets": [
    "string"
  ]
}