1. Pool
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. Pool

Update Pool

PUT
https://api.proxymanager.top/api/v1/pools/update/{poolId}
根据pool id更新一个pool信息

Request

Path Params

Query Params

Body Params application/json

Example
{
    "name": "test-01_001",
    "proxyList": [
        "http://127.0.0.1:8080"
    ],
    "rule": {
        "type": 0
    },
    "isCheck": true,
    "status": 1,
    "description": "test-01_001",
    "autofix": true
}

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 --request PUT 'https://api.proxymanager.top/api/v1/pools/update/?token={{token}}' \
--header 'Content-Type: application/json' \
--data '{
    "name": "test-01_001",
    "proxyList": [
        "http://127.0.0.1:8080"
    ],
    "rule": {
        "type": 0
    },
    "isCheck": true,
    "status": 1,
    "description": "test-01_001",
    "autofix": true
}'

Responses

🟢200success
application/json
Bodyapplication/json

Example
{
    "data": {
        "name": "test04",
        "description": "test04-000",
        "poolId": "1e987b66-****-49f7-b5a2-5f61be3c61fd",
        "teamId": "0a50dcce-****-4e17-8f8f-e23b583ecf26",
        "userId": "4a14934b-****-4237-810b-73ffb315dad6",
        "status": 0,
        "isCheck": true,
        "proxyList": [
            "http://127.0.0.1:7890"
        ],
        "rule": {
            "type": 3,
            "metadata": {
                "request": {
                    "count": 99
                }
            }
        },
        "reqCount": 0,
        "useBytes": 0,
        "createdAt": "2025-09-26T10:24:48.249Z",
        "updatedAt": "2025-09-26T10:27:23.709Z"
    },
    "fixedCount": 1
}
Modified at 2025-10-11 06:39:44
Previous
Create Pool
Next
Delete Pool
Built with