get method

Future<Channel> get(
  1. String partnerId,
  2. String channelId, {
  3. String? advertiserId,
  4. String? $fields,
})

Gets a channel for a partner or advertiser.

Request parameters:

partnerId - The ID of the partner that owns the fetched channel. Value must have pattern ^\[^/\]+$.

channelId - Required. The ID of the channel to fetch. Value must have pattern ^\[^/\]+$.

advertiserId - The ID of the advertiser that owns the fetched channel.

$fields - Selector specifying which fields to include in a partial response.

Completes with a Channel.

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<Channel> get(
  core.String partnerId,
  core.String channelId, {
  core.String? advertiserId,
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if (advertiserId != null) 'advertiserId': [advertiserId],
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'v3/partners/' +
      core.Uri.encodeFull('$partnerId') +
      '/channels/' +
      core.Uri.encodeFull('$channelId');

  final response_ = await _requester.request(
    url_,
    'GET',
    queryParams: queryParams_,
  );
  return Channel.fromJson(response_ as core.Map<core.String, core.dynamic>);
}