The google-api-nodejs-client doesn't have any documentation so I''m just referring to the raw api docs. While trying to use the client
client.datafeedstatuses.custombatch({
entries: [
{merchantId: "myId", datafeedId: "myId", method: 'get', batchId: 1},
]
})
.then((res) => {
console.log(res.data);
return res.data;
})
// returns 200 { "kind": "content#datafeedstatusesCustomBatchResponse" }
How do I use the customBatch to get the data?