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