Google Reseller API:如何获取客户结算数据

时间:2018-03-06 15:11:26

标签: google-apis-explorer google-reseller-api

任何人都可以解释如何从经销商的角度提取结算信息吗?我的意思是我希望得到 - 如果可能 - 一般的帐单文件以及更详细的报告 - 让我们说每个客户。那可能吗? 谢谢,Alex

1 个答案:

答案 0 :(得分:0)

使用Customers: get方法。

您需要提供 customerId ,这实际上是客户的唯一标识符或主域名。如果成功,您将获得200响应代码和响应正文,如下所示。

{
  "kind": "reseller#customer",
  "customerId": string,
  "customerDomain": string,
  "postalAddress": {
    "kind": "customers#address",
    "contactName": string,
    "organizationName": string,
    "locality": string,
    "region": string,
    "postalCode": string,
    "countryCode": string,
    "addressLine1": string,
    "addressLine2": string,
    "addressLine3": string
  },
  "phoneNumber": string,
  "alternateEmail": string,
  "resourceUiUrl": string,
  "customerDomainVerified": boolean
}