# getLastUsedServersList

Description

Get the list of servers that users previously tried to connect to (the list will include both successful and unsuccessful connections). The list will be sorted by the time when the servers were connected to.

void getLastUsedServersList(int iCount)

Parameters

Name Description
iCount The number of previously used servers (only the last 7 are stored)

Response example

{
    "method": "getLastUsedServersList",
    "requestId" : "1",
    "lastUsedServersList": [
        "myserver1.com",
        "myserver2.com"
    ],
    "result": true
}

Response Parameters

Name Description
lastUsedServersList Array of addresses of previously used servers
requestId A unique request identifier
result A flag indicating whether the request was successful

See also

Last Updated: 09/12/2025