// Before running the sample:
// - Enable the API at:
// https://console.developers.google.com/apis/api/content.googleapis.com
// - Login into gcloud by running:
// `$ gcloud auth application-default login`
// - Install the npm module by running:
// `$ npm install googleapis`
const {google} = require('googleapis');
const content = google.content('v2');
async function main() {
const auth = new google.auth.GoogleAuth({
// Scopes can be specified either as an array or as a single, space-delimited string.
scopes: ['https://www.googleapis.com/auth/content'],
});
// Acquire an auth client, and bind it to all future calls
const authClient = await auth.getClient();
google.options({auth: authClient});
// Do the magic
const res = await content.pos.get({
// The ID of the POS or inventory data provider.
merchantId: 'placeholder-value',
// A store code that is unique per merchant.
storeCode: 'placeholder-value',
// The ID of the target merchant.
targetMerchantId: 'placeholder-value',
});
console.log(res.data);
// Example response
// {
// "kind": "my_kind",
// "storeAddress": "my_storeAddress",
// "storeCode": "my_storeCode"
// }
}
main().catch(e => {
console.error(e);
throw e;
});
// Before running the sample:
// - Enable the API at:
// https://console.developers.google.com/apis/api/content.googleapis.com
// - Login into gcloud by running:
// `$ gcloud auth application-default login`
// - Install the npm module by running:
// `$ npm install googleapis`
const {google} = require('googleapis');
const content = google.content('v2.1');
async function main() {
const auth = new google.auth.GoogleAuth({
// Scopes can be specified either as an array or as a single, space-delimited string.
scopes: ['https://www.googleapis.com/auth/content'],
});
// Acquire an auth client, and bind it to all future calls
const authClient = await auth.getClient();
google.options({auth: authClient});
// Do the magic
const res = await content.pos.list({
// The ID of the POS or inventory data provider.
merchantId: 'placeholder-value',
// The ID of the target merchant.
targetMerchantId: 'placeholder-value',
});
console.log(res.data);
// Example response
// {
// "kind": "my_kind",
// "resources": []
// }
}
main().catch(e => {
console.error(e);
throw e;
});
// Before running the sample:
// - Enable the API at:
// https://console.developers.google.com/apis/api/content.googleapis.com
// - Login into gcloud by running:
// `$ gcloud auth application-default login`
// - Install the npm module by running:
// `$ npm install googleapis`
const {google} = require('googleapis');
const content = google.content('v2');
async function main() {
const auth = new google.auth.GoogleAuth({
// Scopes can be specified either as an array or as a single, space-delimited string.
scopes: ['https://www.googleapis.com/auth/content'],
});
// Acquire an auth client, and bind it to all future calls
const authClient = await auth.getClient();
google.options({auth: authClient});
// Do the magic
const res = await content.liasettings.listposdataproviders({});
console.log(res.data);
// Example response
// {
// "kind": "my_kind",
// "posDataProviders": []
// }
}
main().catch(e => {
console.error(e);
throw e;
});
// Before running the sample:
// - Enable the API at:
// https://console.developers.google.com/apis/api/content.googleapis.com
// - Login into gcloud by running:
// `$ gcloud auth application-default login`
// - Install the npm module by running:
// `$ npm install googleapis`
const {google} = require('googleapis');
const content = google.content('v2');
async function main() {
const auth = new google.auth.GoogleAuth({
// Scopes can be specified either as an array or as a single, space-delimited string.
scopes: ['https://www.googleapis.com/auth/content'],
});
// Acquire an auth client, and bind it to all future calls
const authClient = await auth.getClient();
google.options({auth: authClient});
// Do the magic
const res = await content.pos.inventory({
// Flag to simulate a request like in a live environment. If set to true, dry-run mode checks the validity of the request and returns errors (if any).
dryRun: 'placeholder-value',
// The ID of the POS or inventory data provider.
merchantId: 'placeholder-value',
// The ID of the target merchant.
targetMerchantId: 'placeholder-value',
// Request body metadata
requestBody: {
// request body parameters
// {
// "contentLanguage": "my_contentLanguage",
// "gtin": "my_gtin",
// "itemId": "my_itemId",
// "price": {},
// "quantity": "my_quantity",
// "storeCode": "my_storeCode",
// "targetCountry": "my_targetCountry",
// "timestamp": "my_timestamp"
// }
},
});
console.log(res.data);
// Example response
// {
// "contentLanguage": "my_contentLanguage",
// "gtin": "my_gtin",
// "itemId": "my_itemId",
// "kind": "my_kind",
// "price": {},
// "quantity": "my_quantity",
// "storeCode": "my_storeCode",
// "targetCountry": "my_targetCountry",
// "timestamp": "my_timestamp"
// }
}
main().catch(e => {
console.error(e);
throw e;
});
// Before running the sample:
// - Enable the API at:
// https://console.developers.google.com/apis/api/content.googleapis.com
// - Login into gcloud by running:
// `$ gcloud auth application-default login`
// - Install the npm module by running:
// `$ npm install googleapis`
const {google} = require('googleapis');
const content = google.content('v2');
async function main() {
const auth = new google.auth.GoogleAuth({
// Scopes can be specified either as an array or as a single, space-delimited string.
scopes: ['https://www.googleapis.com/auth/content'],
});
// Acquire an auth client, and bind it to all future calls
const authClient = await auth.getClient();
google.options({auth: authClient});
// Do the magic
const res = await content.pos.insert({
// Flag to simulate a request like in a live environment. If set to true, dry-run mode checks the validity of the request and returns errors (if any).
dryRun: 'placeholder-value',
// The ID of the POS or inventory data provider.
merchantId: 'placeholder-value',
// The ID of the target merchant.
targetMerchantId: 'placeholder-value',
// Request body metadata
requestBody: {
// request body parameters
// {
// "kind": "my_kind",
// "storeAddress": "my_storeAddress",
// "storeCode": "my_storeCode"
// }
},
});
console.log(res.data);
// Example response
// {
// "kind": "my_kind",
// "storeAddress": "my_storeAddress",
// "storeCode": "my_storeCode"
// }
}
main().catch(e => {
console.error(e);
throw e;
});