List Accessible Accounts

GET https://us-central1-appgregator.cloudfunctions.net/googleads/customers/list-accessible-customers/

Query Parameters

Name
Type
Description

name*

String

ft-4

connection_name*

String

ga-06

Headers

Name
Type
Description

client_id*

String

XXXX-XXXX.apps.googleusercontent.com

client_secret*

String

XXXX

developer_token*

String

XXXX

x-api-key

String

U2Fsd...

[
    "customers/7098209476",
    "customers/8069909590",
    "customers/1894250756",
    "customers/3485333200"
]
var axios = require('axios');

var config = {
  method: 'get',
  url: 'https://us-central1-appgregator.cloudfunctions.net/googleads/customers/list-accessible-customers?name=ft-4&connection_name=ga-06',
  headers: { 
    'client_id': 'XXXX-XXXX.apps.googleusercontent.com', 
    'client_secret': 'XXXX', 
    'developer_token': 'XXXX', 
    'x-api-key': 'U2Fsd...'
  }
};

axios(config)
.then(function (response) {
  console.log(JSON.stringify(response.data));
})
.catch(function (error) {
  console.log(error);
});

Last updated