Create account

Api Description

POST https://rtk.geodnet.com/api/v3/user/create

Request Body

Parameter
Example
Type
Required
Description

appId

geodnet

String

Yes

Application ID

username

geoduser

String

Yes

username

password

geodpass

String

Yes

password

email

String

No

email

paymentType

0

Number

No

0: Monthly; 1: Yearly

trialDays

7

Number

Yes

Free trial days, minimum value is 1

time

1718150400000

Number

Yes

Current server timestamp in milliseconds

sign

8dd687e158219da6ccc689aef6c0a6a1

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/create" \
  -H "Content-Type: application/json" \
  -d '{
    "appId": "geodnet",
    "username": "geoduser",
    "password": "geodpass",
    "trialDays": 7,
    "time": 1718150400000,
    "sign": "8dd687e158219da6ccc689aef6c0a6a1"
  }'

Request Example

{
  "appId": "geodnet",
  "username": "geoduser",
  "password": "geodpass",
  "trialDays": 7,
  "time": 1718150400000,
  "sign": "8dd687e158219da6ccc689aef6c0a6a1"
}

Response

{
  "code": 1000,
  "msg": "OK"
}

Last updated