{
"chatId": "123",
"customerField": [
{
"id": 123,
"value": "单行文本"
},
{
"id": 124,
"value": 123
},
{
"id": 125,
"value": [123, 124, 125]
},
{
"id": 126,
"value": "多行文本"
},
{
"id": 127,
"value": [
{
"latitude": 123.123124,
"longitude": 123.124124,
"address": "位置信息",
"locationAddress": "北京市东城区"
}
]
}
]
}
curl --location --request POST '/api/v1/group/update-group-field' \
--header 'appId;' \
--header 'timestamp;' \
--header 'sign;' \
--header 'appKey: {{appKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"chatId": "123",
"customerField": [
{
"id": 123,
"value": "单行文本"
},
{
"id": 124,
"value": 123
},
{
"id": 125,
"value": [123, 124, 125]
},
{
"id": 126,
"value": "多行文本"
},
{
"id": 127,
"value": [
{
"latitude": 123.123124,
"longitude": 123.124124,
"address": "位置信息",
"locationAddress": "北京市东城区"
}
]
}
]
}'
{}