Files
Wrench-ApiTester/public/wrenchboard/stepresetpass-final.php
T
dev-chiefworks f6dfe922f0 added more calls
2023-05-26 14:57:45 -04:00

19 lines
478 B
PHP

<?php
include_once('def.php');
include 'session_read.php';
include('wrenchboard_class.php');
$wrenchboard = new wrenchboard_class();
$data = array(
"sessionid" => "DUMMY-CANNOT_BE_EMPTY" ,
"reset_link" => '36dfec6e557768511ffc87bdc861fac4543ae5758f933f8a7c92a7a70960fa3f',
"newpass" => 'your-new-password',
"step" => 300,
'action'=>WRENCHBOARD_COMPLETE_PASSWORDRESET
);
$out = array();
$ret = $wrenchboard->wrenchboard_api($data,$out,'stepresetpass');
?>