1. Router
ProxyManager V1.0.0(developer)
  • Router
    • List Routers
      GET
    • Router Detail
      GET
    • Create Router
      POST
    • Update Router
      PUT
    • Delete Router
      DELETE
  • Pool
    • List Pools
      GET
    • Create Pool
      POST
    • Update Pool
      PUT
    • Delete Pool
      DELETE
  1. Router

Create Router

POST
https://api.proxymanager.top/api/v1/routers/create

Request

Query Params

Body Params application/json

Example
{
  "name": "test_dc",
  "password": "secret",
  "isCheck": true,
  "description": "Primary router",
  "auditType": 2,
  "status": 1,
  "poolId": "1af6baae-****-4b43-aa36-491222333489",
  "auditBody": false
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff 'https://api.proxymanager.top/api/v1/routers/create?token={{token}}' \
--header 'Content-Type: application/json' \
--data '{
  "name": "test_dc",
  "password": "secret",
  "isCheck": true,
  "description": "Primary router",
  "auditType": 2,
  "status": 1,
  "poolId": "1af6baae-****-4b43-aa36-491222333489",
  "auditBody": false
}'

Responses

🟢200success
application/json
Bodyapplication/json

Example
{
    "auditType": 2,
    "description": "Primary router",
    "isCheck": true,
    "name": "test_dc_001",
    "poolId": "a76d63ee-****-45ca-9776-41e05bf7beed",
    "reqCount": 0,
    "routerId": "be7e5ced-****-4a35-9644-f54d3c42bb0d",
    "status": 1,
    "teamId": "00b6fbae-****-4caa-8de2-9bedbee890fb",
    "useBytes": 0,
    "userId": "0b5839ee-****-4193-a8c8-202c6eeca14c",
    "auditBody": false,
    "createdAt": "2025-10-11T01:53:35.383Z",
    "updatedAt": "2025-10-11T01:53:35.383Z"
}
Modified at 2025-10-11 01:49:47
Previous
Router Detail
Next
Update Router
Built with