2023-07-23 07:38:57 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once 'SASConnector.php';
|
|
|
|
|
|
|
|
$api = new SASConnector('172.16.12.108', 'admin', 'admin');
|
|
|
|
$api->login();
|
|
|
|
|
2023-07-23 07:41:15 +00:00
|
|
|
|
2023-07-23 08:08:55 +00:00
|
|
|
$res = $api->delete('profile/31');
|
2023-07-23 07:38:57 +00:00
|
|
|
|
|
|
|
print_r(json_decode($res));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//this is the expected response
|
|
|
|
//stdClass Object
|
|
|
|
//(
|
|
|
|
// [status] => 200
|
|
|
|
//)
|