Create random account

Api Description

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

Request parameter

Parameter
Example
Type
Required
Description

appId

geodnet

String

Y

Application ID

time

1718150400000

Number

Y

Current server timestamp in milliseconds

sign

f4c91395df1b944762293987f4c1fbab

String

Y

Encrypted signature (see Encryption method)

Request example

{
  "appId": "geodnet",
  "time": 1718150400000,
  "sign": "f4c91395df1b944762293987f4c1fbab"
}

Response parameter

Parameter
Example
Type
Description

code

1000

Number

Status code

msg

OK

String

Status code description

data

Object

Object

Account information

username

geod_rand_1726643332472_33627

String

username

password

fc572441c599b67b17988c5f834ac6a0

String

password

expiration

1726643332472

Number

Expiration timestamp in milliseconds

status

0

Number

Account Status (0: Enabled, 1: Disabled)

Response example

{
  "code": 1000,
  "msg": "OK",
  "data": {
    "username": "geod_rand_1726643332472_33627",
    "password": "fc572441c599b67b17988c5f834ac6a0",
    "expiration": 1726643332472,
    "status": 0
  }
}

Last updated