Delete Profile
DELETE
/me/profile
const url = 'https://example.com/me/profile';const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://example.com/me/profile \ --header 'Authorization: Bearer <token>'Withdraw the profile consent: deletes gender/seeking/age data and every pair, so the user is no longer matched until they consent again.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response