DocumentService :: DeleteLigneDocument
The DELETE method, is used to retrieve data.
The list of necessary parameters for sending a query:
- int idLigne
No returns data.
Input parameters:
{"idLigne":121}
Example:
require(__DIR__ . '/service/WebServices100.php'); use services\WebServices100; $url = 'http://<Your ip>:<Your Port>/WebServices100/<Your environment>/DocumentService/rest/DeleteLigneDocument'; // add parameters $data = new stdClass(); $data->idLigne = 121; $json_data = json_encode($data); WebServices100::getData($url, $json_data);
Result:
BOOLEAN