Reset system admin password.
The old password of system admin.
The new password pf system admin.
OK
const response = await fetch('http://127.0.0.1:8888/api/admin/password', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "old_password": {}, "new_password": {} }), }); const data = await response.json();