update method
Moves entities to a GTM Folder.
request
- The metadata request object.
Request parameters:
accountId
- The GTM Account ID.
containerId
- The GTM Container ID.
folderId
- The GTM Folder ID.
tagId
- The tags to be moved to the folder.
triggerId
- The triggers to be moved to the folder.
variableId
- The variables to be moved to the folder.
$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<void> update(
Folder request,
core.String accountId,
core.String containerId,
core.String folderId, {
core.List<core.String>? tagId,
core.List<core.String>? triggerId,
core.List<core.String>? variableId,
core.String? $fields,
}) async {
final body_ = convert.json.encode(request);
final queryParams_ = <core.String, core.List<core.String>>{
if (tagId != null) 'tagId': tagId,
if (triggerId != null) 'triggerId': triggerId,
if (variableId != null) 'variableId': variableId,
if ($fields != null) 'fields': [$fields],
};
final url_ = 'tagmanager/v1/accounts/' +
commons.escapeVariable('$accountId') +
'/containers/' +
commons.escapeVariable('$containerId') +
'/move_folders/' +
commons.escapeVariable('$folderId');
await _requester.request(
url_,
'PUT',
body: body_,
queryParams: queryParams_,
downloadOptions: null,
);
}