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

  • targetType string Required

    Values are User or App.

  • targets array[string] Required

Responses

  • 204

    Activities deleted successfully.

  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

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"
  ]
}