top of page

Appeals Policy

 

Purpose

My Soul Connector is committed to maintaining a safe, inclusive, and transparent community. This Appeals Policy explains how users may request a review of decisions that affect their account, access, or participation on the Platform.

 

Scope

This policy applies to decisions made by My Soul Connector relating to:

  • Account suspensions, restrictions, or terminations
     

  • Match or communication limitations
     

  • Payment disputes relating to verification fees or subscriptions
     

  • Safety or safeguarding actions taken following reports, checks, or behavioural concerns
     

 

Right to Appeal

All users have the right to appeal decisions they believe were made unfairly or in error.
Appeals must be submitted within 14 days of the decision being communicated.

 

Appeals Process

1. Submitting an Appeal

Appeals should be submitted in writing via the Appeals Form in the Help Centre or by emailing:


📧 hello@mysoulconnector.co.uk

Please include:

  • Full name
     

  • Registered email address
     

  • Details of the decision being appealed
     

  • Clear reasons and any relevant information supporting your appeal
     

 

2. Acknowledgement

You will receive confirmation of receipt of your appeal within 3 working days.

 

3. Review

  • Your appeal will be reviewed by a senior member of the safeguarding and compliance team who was not involved in the original decision.
     

  • Where appropriate, external specialists (e.g., data protection or safeguarding consultants) may be consulted to ensure impartiality, fairness, and compliance.
     

 

4. Outcome

You will receive a written response within 14 working days, confirming whether the decision has been:

  • Upheld
     

  • Amended
     

  • Overturned
     

Decisions made following the appeal review are final.

 

Safeguarding & Safety Considerations

If there is any indication of risk to a user or the wider community, account restrictions will remain in place throughout the appeal process.


My Soul Connector prioritises community safety above individual reinstatement.

 

 

Accessibility & Fairness

My Soul Connector ensures that:

  • All appeals are considered fairly and without discrimination, bias, or retaliation.
     

  • Reasonable adjustments are available for users with accessibility needs.
     

  • Feedback from appeals is used to improve policies and enhance user experience.

Contact: For questions about this policy,  email: hello@mysoulconnector.co.uk

 

Last updated: 17th November 2025

bottom of page
import wixUsers from 'wix-users'; import wixData from 'wix-data'; $w.onReady(function () { const user = wixUsers.currentUser; // Only run if user is logged in if (user.loggedIn) { const userId = user.id; // Generate a short User ID: usr + last 4 chars of Wix user ID const shortId = "usr" + userId.slice(-4); // Update member profile if User ID is empty wixData.query("Members/PrivateMembersData") .eq("_id", userId) .find() .then((results) => { if (results.items.length > 0) { const member = results.items[0]; if (!member.userID) { // only assign if empty member.userID = shortId; wixData.update("Members/PrivateMembersData", member) .catch((err) => console.error("Error updating User ID:", err)); } } }); } });