客户/商店中的BigCommerce客户属性

时间:2019-04-05 15:19:07

标签: bigcommerce

我可以找回客户的

有一个当前客户的API-https://developer.bigcommerce.com/api-docs/customers/current-customer-api,但它仅返回有关客户的以下信息。

"customer": {
   "id": 4927,
   "email": "john.doe@gmail.com",
   "group_id": "6"
}

我真的有能力从中获取所有数据 https://developer.bigcommerce.com/api-reference/customer-subscribers/v3-customers-api/customer-attributes/customersattributesget作为current-customer-api有效负载的属性

/customer/current.jwt?app_client_id={appClientId}&attribute-ids:in=1,2,3

"customer": {
   "id": 4927,
   "email": "john.doe@gmail.com",
   "group_id": "6"
   "attributes": [
        {
          "id": 1,
          "name": "Age",
          "type": "string",
          "date_created": "2018-11-13T21:42:06Z",
          "date_modified": "2018-11-14T16:46:23Z"
        },
        {
          "id": 2,
          "name": "Shoe Size",
          "type": "number",
          "date_created": "2018-11-14T16:34:57Z",
          "date_modified": "2018-11-14T16:34:57Z"
        },
        {
          "id": 3,
          "name": "Date Joined",
          "type": "date",
          "date_created": "2019-02-19T19:13:21Z",
          "date_modified": "2019-02-19T19:13:21Z"
        }
    ]
}

1 个答案:

答案 0 :(得分:1)

这是一个有趣的功能请求。当前客户API的目的是以一种安全的方式验证已登录客户的身份,这就是为什么有效负载如此之小的原因(前提是您可能会基于ID返回)。

尽管如此,我们计划在店面展示客户属性数据,这似乎可以解决您的用例。我们将很快添加对Handlebars的支持,并且我们还在开发一个店面的GraphQL API。您可以在我们的博客文章中了解更多信息:

https://medium.com/bigcommerce-developer-blog/customize-and-extend-your-customer-data-with-the-new-bigcommerce-v3-customers-api-8609903e102a