19 lines
268 B
PHP
19 lines
268 B
PHP
|
<?php
|
||
|
|
||
|
require_once 'SASConnector.php';
|
||
|
|
||
|
$api = new SASConnector('172.16.12.108', 'admin', 'admin');
|
||
|
$api->login();
|
||
|
|
||
|
$res = $api->delete('profile/id', []);
|
||
|
|
||
|
print_r(json_decode($res));
|
||
|
|
||
|
|
||
|
|
||
|
//this is the expected response
|
||
|
//stdClass Object
|
||
|
//(
|
||
|
// [status] => 200
|
||
|
//)
|