Order CustomerInfo
Data structure of customer_info
Field | Column Type | Description | Example |
|---|---|---|---|
gender | String | Gender | male / female / Other |
birthday | String | Birthday If birth_year is null, then the default year is 1904. If birth_month is null, then the default month is 1. If birth_day is null, then the default day is 1. | 2018-07-05 |
custom_data |
| Custom Fields |
|
JSON Sample
{
"customer_info": {
"gender": "male",
"birthday": "2018-07-05",
"custom_data": [
{
"value": "line_id_123456",
"name_translations": {
"zh-hant": "LineID"
},
"field_id": "5b51c33fe3880967330000fd"
},
{
"value": "false",
"name_translations": {
"zh-hant": "是否送人?"
},
"field_id": "5b51c347e3880967330000ff"
}
]
}
}Updated 13 days ago