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

const client = new Mobilerun();

const users = await client.connect.users.list();

console.log(users.items);
{
  "items": [
    {
      "createdAt": "2023-11-07T05:31:56Z",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "username": "<string>",
      "proxyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ],
  "pagination": {
    "hasNext": true,
    "hasPrev": true,
    "page": 123,
    "pageSize": 123,
    "pages": 123,
    "total": 123
  }
}

Query Parameters

page
integer
default:1

Page number (1-based).

Required range: x >= 1
pageSize
integer
default:20

Number of items per page.

Required range: 1 <= x <= 100
proxyId
string<uuid>

Filter to users bound to this proxy. Users not bound to it (including unbound users) are excluded.

Response

The caller's SOCKS5 users, without credentials.

A page of SOCKS5 users.

items
object[]
required
pagination
object
required

Pagination metadata for a list response.