User 2fa enroll

A list of all publicly available methods for interacting with the API.

POST

User 2fa enroll

/user/2fa/enroll
This method requires authorization!
You can use your own API key, which can be obtained at control panel.
This method - requires permissions -2fa.update
When creating an API token in your control panel, you can choose certain permissions (for example: prevent the token from placing orders).
You can also find a list of permissions in our documentation.

Query method

POSThttps://api.stableproxy.com/v2/user/2fa/enroll

Code examples

1const baseUrl = "https://api.stableproxy.com/v2";
2const response = await fetch(baseUrl + "/user/2fa/enroll", {
3 method: "POST",
4 headers: {
5 "Authorization": "API-Token [YOUR TOKEN]",
6 "Content-Type": "application/json"
7 }
8});
9const data = await response.json();