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