Account Information
GET
https://us-central1-appgregator.cloudfunctions.net/googleads/customers/account-hierarchy/
Query Parameters
Name
Type
Description
name*
String
ft-4
connection_name*
String
ga-06
customer_id*
String
1894250756
Headers
Name
Type
Description
client_secret*
String
XXX-XXXX
developer_token*
String
XXXX
x-api-key*
String
U2FsdG...
{
"status": true,
"id": 1894250756,
"descriptive_name": "test_appgre",
"currency_code": "IDR",
"time_zone": "Asia/Jakarta",
"tracking_url_template": "",
"auto_tagging_enabled": true
}
var axios = require('axios');
var config = {
method: 'get',
url: 'https://us-central1-appgregator.cloudfunctions.net/googleads/customers/account-information?name=ft-4&connection_name=ga-06&customer_id=1894250756',
headers: {
'client_id': 'XXXX-XXXX.apps.googleusercontent.com',
'client_secret': 'XXX-XXXX',
'developer_token': 'XXXX',
'x-api-key': 'U2FsdG...'
}
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
Last updated