Query account

Api Description

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

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

33fcd377ee04a81173f6d9b6e6f54ae3

String

Yes

Encrypted signature

Response Body

Parameter
Example
Type
Description

code

1000

Number

Status code

msg

OK

String

Status code description

data.username

geoduser

String

username

data.password

geodpass

String

password

data.email

String

email

data.expiration

1718792318595

Number

account expiration timestamp in milliseconds

data.status

0

Number

0: Enabled; 1: Disabled

data.connections

1

Number

Number of connections

data.paymentType

0

Number

0: Monthly; 1: Yearly

cURL

curl -X POST "https://rtk.geodnet.com/api/v3/user/info" \
  -H "Content-Type: application/json" \
  -d '{
    "appId": "geodnet",
    "username": "geoduser",
    "time": 1718150400000,
    "sign": "33fcd377ee04a81173f6d9b6e6f54ae3"
  }'

Request Example

{
  "appId": "geodnet",
  "username": "geoduser",
  "time": 1718150400000,
  "sign": "33fcd377ee04a81173f6d9b6e6f54ae3"
}

Response

{
  "code": 1000,
  "msg": "OK",
  "data": {
    "username": "geoduser",
    "password": "geodpass",
    "email": "",
    "expiration": 1718792318595,
    "status": 0,
    "connections": 1,
    "paymentType": 0
  }
}

Last updated