delete method
- String accountId,
- String webPropertyId,
- String profileId,
- String experimentId,
- {String $fields}
Delete an experiment.
Request parameters:
accountId
- Account ID to which the experiment belongs
webPropertyId
- Web property ID to which the experiment belongs
profileId
- View (Profile) ID to which the experiment belongs
experimentId
- ID of the experiment to delete
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future delete(core.String accountId, core.String webPropertyId,
core.String profileId, core.String experimentId,
{core.String $fields}) {
var _url;
var _queryParams = new core.Map<core.String, core.List<core.String>>();
var _uploadMedia;
var _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
var _body;
if (accountId == null) {
throw new core.ArgumentError("Parameter accountId is required.");
}
if (webPropertyId == null) {
throw new core.ArgumentError("Parameter webPropertyId is required.");
}
if (profileId == null) {
throw new core.ArgumentError("Parameter profileId is required.");
}
if (experimentId == null) {
throw new core.ArgumentError("Parameter experimentId is required.");
}
if ($fields != null) {
_queryParams["fields"] = [$fields];
}
_downloadOptions = null;
_url = 'management/accounts/' +
commons.Escaper.ecapeVariable('$accountId') +
'/webproperties/' +
commons.Escaper.ecapeVariable('$webPropertyId') +
'/profiles/' +
commons.Escaper.ecapeVariable('$profileId') +
'/experiments/' +
commons.Escaper.ecapeVariable('$experimentId');
var _response = _requester.request(_url, "DELETE",
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions);
return _response.then((data) => null);
}