Skip to main content
GET
/
connect
/
users
/
{id}
JavaScript
import Mobilerun from '@mobilerun/sdk';

const client = new Mobilerun();

const user = await client.connect.users.retrieve('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');

console.log(user.id);
{
  "createdAt": "2023-11-07T05:31:56Z",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "username": "<string>",
  "password": "<string>",
  "proxyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Response

The user, including its password.

A SOCKS5 user including its password. Returned only on create and single-user reads.

createdAt
string<date-time>
required
id
string<uuid>
required
username
string
required
password
string
required
proxyId
string<uuid> | null

The proxy this user routes to (dedicated routing), or null if unbound.