+44 (0) 1603 937800 — Mon to Fri, 9am to 5pm UK time
A - A - A

Mortality Screening

Understanding if pension members or customers are deceased and being promptly notified about deaths is the key to good scheme governance and fraud prevention.

With options that will screen data as frequently or infrequently as required, The Tracing Group's mortality screening service supports providers in meeting regulatory obligations and saving money.

Benefits

  • Prevent fraud
  • Manage liability
  • Meet regulations
  • Save money
  • Increase customer confidence
  • Improve scheme efficiency

Get in touch to arrange a mortality screening plan with us today.

Get in touch

Interested in how we could help you?

Message sent successfully.
There was an error on the form. Please check and try again.
You have submitted too many forms. Please try again later.
Seven minus two
function submitForm(formId) { const form = document.getElementById(formId); const formData = new FormData(form); fetch('/api/contact', { method: 'POST', body: formData }) .then(response => { if(response.ok) { form.classList.remove('fail'); form.classList.remove('ratelimit'); form.classList.add('success'); form.reset(); } else if(response.status == 429) { form.classList.remove('success'); form.classList.remove('fail'); form.classList.add('ratelimit'); } else { form.classList.remove('success'); form.classList.remove('ratelimit'); form.classList.add('fail'); } }) }