0.0.20240507 • Published 6 days ago

@maxim_mazurok/gapi.client.doubleclickbidmanager-v2 v0.0.20240507

Weekly downloads
-
License
MIT
Repository
github
Last release
6 days ago

TypeScript typings for DoubleClick Bid Manager API v2

DoubleClick Bid Manager API allows users to manage and create campaigns and reports. For detailed description please check documentation.

Installing

Install typings for DoubleClick Bid Manager API:

npm install @types/gapi.client.doubleclickbidmanager-v2 --save-dev

Usage

You need to initialize Google API client in your code:

gapi.load('client', () => {
  // now we can use gapi.client
  // ...
});

Then load api client wrapper:

gapi.client.load(
  'https://doubleclickbidmanager.googleapis.com/$discovery/rest?version=v2',
  () => {
    // now we can use:
    // gapi.client.doubleclickbidmanager
  }
);
// Deprecated, use discovery document URL, see https://github.com/google/google-api-javascript-client/blob/master/docs/reference.md#----gapiclientloadname----version----callback--
gapi.client.load('doubleclickbidmanager', 'v2', () => {
  // now we can use:
  // gapi.client.doubleclickbidmanager
});

Don't forget to authenticate your client before sending any request to resources:

// declare client_id registered in Google Developers Console
var client_id = '',
  scope = [
    // View and manage your reports in DoubleClick Bid Manager
    'https://www.googleapis.com/auth/doubleclickbidmanager',
  ],
  immediate = true;
// ...

gapi.auth.authorize(
  {client_id: client_id, scope: scope, immediate: immediate},
  authResult => {
    if (authResult && !authResult.error) {
      /* handle successful authorization */
    } else {
      /* handle authorization error */
    }
  }
);

After that you can use DoubleClick Bid Manager API resources:

/*
Creates a query.
*/
await gapi.client.doubleclickbidmanager.queries.create({});

/*
Deletes a query as well as the associated reports.
*/
await gapi.client.doubleclickbidmanager.queries.delete({queryId: 'queryId'});

/*
Retrieves a query.
*/
await gapi.client.doubleclickbidmanager.queries.get({queryId: 'queryId'});

/*
Lists queries created by the current user.
*/
await gapi.client.doubleclickbidmanager.queries.list({});

/*
Runs a stored query to generate a report.
*/
await gapi.client.doubleclickbidmanager.queries.run({queryId: 'queryId'});
0.0.20240507

6 days ago

0.0.20240430

13 days ago

0.0.20240424

20 days ago

0.0.20240415

27 days ago

0.0.20240412

1 month ago

0.0.20240402

1 month ago

0.0.20240326

2 months ago

0.0.20240320

2 months ago

0.0.20240311

2 months ago

0.0.20240305

2 months ago

0.0.20240229

3 months ago

0.0.20240221

3 months ago

0.0.20240213

3 months ago

0.0.20240206

3 months ago

0.0.20240201

3 months ago

0.0.20240123

4 months ago

0.0.20240112

4 months ago

0.0.20240109

4 months ago

0.0.20240101

4 months ago

0.0.20231219

5 months ago

0.0.20231128

6 months ago

0.0.20231121

6 months ago

0.0.20230815

9 months ago

0.0.20231031

6 months ago

0.0.20230808

9 months ago

0.0.20231017

7 months ago

0.0.20230801

10 months ago

0.0.20230725

10 months ago

0.0.20231024

7 months ago

0.0.20230718

10 months ago

0.0.20230919

8 months ago

0.0.20230711

10 months ago

0.0.20230912

8 months ago

0.0.20231011

7 months ago

0.0.20230829

9 months ago

0.0.20230904

8 months ago

0.0.20230822

9 months ago

0.0.20230703

10 months ago

0.0.20231003

7 months ago

0.0.20230613

11 months ago

0.0.20230516

12 months ago

0.0.20230509

1 year ago

0.0.20230502

1 year ago

0.0.20230425

1 year ago

0.0.20230523

12 months ago

0.0.20230530

12 months ago

0.0.20230315

1 year ago

0.0.20230314

1 year ago

0.0.20230301

1 year ago

0.0.20230321

1 year ago

0.0.20230222

1 year ago

0.0.20230404

1 year ago

0.0.20230328

1 year ago

0.0.20230307

1 year ago

0.0.20230411

1 year ago

0.0.20230216

1 year ago

0.0.20230124

1 year ago

0.0.20230207

1 year ago

0.0.20230131

1 year ago

0.0.20230117

1 year ago

0.0.20230104

1 year ago

0.0.20221123

1 year ago

0.0.20221101

2 years ago

0.0.20221221

1 year ago

0.0.20230110

1 year ago

0.0.20221207

1 year ago

0.0.20221205

1 year ago

0.0.20221004

2 years ago

0.0.20221025

2 years ago

0.0.20221014

2 years ago

0.0.20221003

2 years ago

0.0.20221018

2 years ago

0.0.20220922

2 years ago

0.0.20220906

2 years ago

0.0.20220830

2 years ago

0.0.20220824

2 years ago

0.0.20220913

2 years ago

0.0.20220816

2 years ago

0.0.20220812

2 years ago

0.0.20220803

2 years ago