1. Proxies
Proxy Tool
  • Tổng quan cấu trúc hệ thống
  • Bussiness | Logic
    • Logic nghiệp vụ
  • Project
    • Tool
      • Tổng quan
      • Tài liệu API
      • Architecture
        • User Guide
        • Database Schema
        • System Architecture
        • Code Structure
      • Public API
        • Auth
          • Đăng nhập
          • Đăng ký người dùng
          • Lấy thông tin cá nhân hiện tại
        • Users
          • Danh sách người dùng
          • Tạo người dùng mới (Admin)
        • Proxies
          • Danh sách tất cả Proxy
            GET
          • Thêm Proxy hàng loạt
            POST
          • Nhập proxy từ file Excel/CSV
            POST
        • Get proxy
          • Lấy một Proxy trống (Client Tool)
        • Webhooks
          • Trả lại Proxy sau khi dùng
        • Info
          • Thông tin hệ thống (Root)
          • Kiểm tra tình trạng hệ thống
          • Xem tệp nhật ký (Logs)
      • Deployment
        • Local
        • Staging
        • Product
  • Schemas
    • CreateUser
    • Proxy
  1. Proxies

Thêm Proxy hàng loạt

POST
/api/proxies/

Request

Ủy quyền
JWT Bearer
Thêm parameter
Authorization
vào header
Ví dụ:
Authorization: ********************
or
Body Paramsapplication/json

Các ví dụ

Response

🟢200
OK
Response này không có body.
request Ví dụ request
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://65.19.178.20:51006/api/proxies/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '[
    {
        "ip": "103.116.12.1",
        "port": 8080,
        "username": "user",
        "password": "pass",
        "area": "vn"
    }
]'
Ngày cập nhật 2025-12-30 11:16:18
Trước
Danh sách tất cả Proxy
Tiếp theo
Nhập proxy từ file Excel/CSV
Built with