Account owner can modify all member information, each member can modify their own information
Request
Body Params  application/json
{
    "member_id": 0,
    "member_name": "string",
    "phone": "string",
    "email": "string",
    "ref_id": "string",
    "updates": {
        "phone": "string",
        "country_code": "string",
        "email": "string",
        "member_name": "string",
        "time_zone": "Asia/Shanghai",
        "locale": "zh-CN"
    }
}
Request Code Samples
curl --location --request POST 'http://prod-cn.your-api-server.com/member/info/reset' \
--header 'Content-Type: application/json' \
--data-raw '{
    "member_id": 0,
    "member_name": "string",
    "phone": "string",
    "email": "string",
    "ref_id": "string",
    "updates": {
        "phone": "string",
        "country_code": "string",
        "email": "string",
        "member_name": "string",
        "time_zone": "Asia/Shanghai",
        "locale": "zh-CN"
    }
}'
Responses
application/json {
    "error": {
        "code": "InvalidParameter",
        "message": "string"
    }
}
Modified at 2025-04-01 04:13:41