Update account email
Api Description
POST https://rtk.geodnet.com/api/v3/user/set/email
Request Body
Parameter
Example
Type
Required
Description
appId
geodnet
String
Yes
Application ID
username
geoduser
String
Yes
username
time
1718150400000
Number
Yes
Current server timestamp in milliseconds
sign
aa5a36991257e8dece3c05cd8f9aab2f
String
Yes
Encrypted signature
Response Body
Parameter
Example
Type
Description
code
1000
Number
Status code
msg
OK
String
Status code description
cURL
curl -X POST "https://rtk.geodnet.com/api/v3/user/set/email" \
-H "Content-Type: application/json" \
-d '{
"appId": "geodnet",
"username": "geoduser",
"email": "[email protected]",
"time": 1718150400000,
"sign": "aa5a36991257e8dece3c05cd8f9aab2f"
}'Request Example
{
"appId": "geodnet",
"username": "geoduser",
"email": "[email protected]",
"time": 1718150400000,
"sign": "aa5a36991257e8dece3c05cd8f9aab2f"
}Response
{
"code": 1000,
"msg": "OK"
}Last updated
