User 2fa confirm
A list of all publicly available methods for interacting with the API.
POST
User 2fa confirm -/user/2fa/confirm
Query method
POSThttps://api.stableproxy.com/v2/user/2fa/confirm
Code examples
JavaScript
async function postUser2faConfirm() {
const baseUrl = 'https://api.stableproxy.com/v2';
const req = await fetch(baseUrl + '/user/2fa/confirm', {
method: 'POST',
headers: {
'Authorization': 'API-Token [YOUR TOKEN]',
'Content-Type': 'application/json'
}
}
);
const res = await req.json();
}