Profile

Reset all user profiles

Reset the active user profile with the specified ID, or reset all active user profiles when id is not specified.

POSThttps://HOSTNAME:8887/api/users/profile
Query parameters
Response

OK

Request
const response = await fetch('https://HOSTNAME:8887/api/users/profile', {
    method: 'POST',
    headers: {},
});
const data = await response.json();

Reset user profile

Reset user profile.

POSThttps://HOSTNAME:8887/api/users/{id}/profile
Path parameters
id*all of

The unique ID of user.

Response

OK

Request
const response = await fetch('https://HOSTNAME:8887/api/users/{id}/profile', {
    method: 'POST',
    headers: {},
});
const data = await response.json();