PHP code example of georgicon / swagger-iauditor
1. Go to this page and download the library: Download georgicon/swagger-iauditor library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
georgicon / swagger-iauditor example snippets
Instance = new Swagger\Client\Api\ActionsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$action_id = "action_id_example"; // string | The action identifier
try {
$apiInstance->actionsActionIdDelete($action_id);
} catch (Exception $e) {
echo 'Exception when calling ActionsApi->actionsActionIdDelete: ', $e->getMessage(), PHP_EOL;
}