我正在使用以下 JS 代码来检索我的客户的所有订阅的座位详细信息。
gapi.client.reseller.subscriptions.list()
.then(function(response) {
// Handle the results here (response.result has the parsed body).
console.log("Response", response);
},
function(err) { console.error("Execute error", err); });
但是,它也会返回所有其他信息。如何自定义它以使其仅返回座位数?