Customer
字段 | 类型 | 描述 | 是否必填 |
---|---|---|---|
id | string | 唯一id | Y |
string | 邮箱 | Y | |
phone | string | 手机号码 | N |
country_code | string | 国家二代码,如果手机号不为空,该值必填 | N |
first_name | string | FIrst name | N |
last_name | string | Last name | N |
email_marketing_consent | object | 邮件订阅状态 MarketingConsent | N |
sms_marketing_consent | object | 短信订阅状态 MarketingConsent | N |
default_address | object | 默认地址 Default Address | N |
city | string | 所在城市 | N |
locale | string | 语言 | N |
created_at | number | 创建时间,10位时间戳精确到秒 | Y |
tags | array | 用户标签 例子: ["vip","loyal"] | N |
tag_value | string | 用户分类标签 目前且支持默认放到sys_api目录下面 eg:vip:buy | N |
gender | string | 性别:boy/girl/unknown | N |
birth_date | string | 生日YYYY-MM-DD | N |
Default Address
字段 | 类型 | 描述 | 是否必填 |
---|---|---|---|
first_name | string | FIrst name | N |
last_name | string | Last name | N |
phone | string | 手机号码 | N |
country_code | string | 国家二代代码 | N |
country_name | string | 国家名称 | N |
province_code | string | 洲/省编码 | N |
province | string | 洲/省 | N |
city | string | 城市 | N |
zip | string | 邮编 | N |
address1 | string | 详细地址1 | N |
address2 | string | 详细地址2 | N |
MarketingConsent
字段 | 类型 | 描述 | 是否必填 |
---|---|---|---|
state | string | 订阅状态取值变量 subscribed(订阅),undefined(未定义),not_subscribed(退订,退订状态只可以修改一次) | Y |
updatedAt | number | 创建时间,10位时间戳精确到秒 | Y |
JSON结构
{
"id": "2",
"email": "[email protected]",
"first_name": "testing",
"last_name": "2",
"created_at": "1686973206",
"email_marketing_consent": {
"state": "subscribed",
"updatedAt": 1717577626
},
"sms_marketing_consent": {
},
"default_address": {
}
}