If you are an athlete (or representative) and want SteelQueens to stop displaying your Instagram profile photo as an editorial avatar, fill out the form below. We honor takedown requests within 48 hours; in practice the endpoint processes them in under a minute.
I’m the athlete
I represent the athlete
Other
document.getElementById(‘sqTakedownForm’).addEventListener(‘submit’, function(e) {
e.preventDefault();
var form = e.target;
var body = {
instagram_handle: form.instagram_handle.value.trim(),
requester_email: form.requester_email.value.trim(),
requester_role: form.requester_role.value,
reason: form.reason.value
};
fetch(‘/wp-json/steelqueens/v1/photo-takedown’, {
method: ‘POST’,
headers: { ‘Content-Type’: ‘application/json’ },
body: JSON.stringify(body)
}).then(function(r){ return r.json(); }).then(function(data) {
document.getElementById(‘tk_result’).innerHTML =
data.status === ‘removed’
? ‘
‘ + data.message + ‘
‘
: ‘
Error: ‘ + (data.message || data.error || ‘unknown’) + ‘
‘;
});
});