---
title: "List SOCKS5 users"
method: GET
path: "/connect/users"
tags: ["Users"]
---

# List SOCKS5 users

`GET /connect/users`

Returns SOCKS5 users owned by the caller. Passwords are omitted from the list.

## Query parameters

- `page` integer
- `pageSize` integer
- `proxyId` string, uuid

## Response `200`

The caller's SOCKS5 users, without credentials.

- UserList — A page of SOCKS5 users.
  - `items` User[], required
    - `createdAt` string, date-time, required
    - `id` string, uuid, required
    - `proxyId` string, uuid, nullable — The proxy this user routes to (dedicated routing), or null if unbound.
    - `username` string, required
  - `pagination` PaginationMeta1, required — Pagination metadata for a list response.
    - `hasNext` boolean, required — Whether a next page exists.
    - `hasPrev` boolean, required — Whether a previous page exists.
    - `page` integer, required — Current page number (1-based).
    - `pageSize` integer, required — Number of items per page.
    - `pages` integer, required — Total number of pages.
    - `total` integer, required — Total number of items across all pages.

## Other responses

- `401` — The X-User-ID header was missing or invalid, or a present X-Owner-Id header was not a uuid.

---

[API](https://skmtc.net/mobilerun/apis/workflows.md) · [All operations](https://skmtc.net/mobilerun/apis/workflows/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mobilerun/workflows/revisions/1bc499aa8f99/schema)
