Xóa proxy
Phần này hướng dẫn cấu hình Xóa proxy ổn định với PinguProxy.
DELETE
/proxies/deleteTham số phần thân
Bảo mật
Authorizationstringbắt buộcJWT Bearer token
Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
Phần thân yêu cầu
idintegerbắt buộcID proxy cần xóa
1const response = await fetch('https://api.pinguproxy.com/proxies/delete', {2 method: 'DELETE',3 headers: {4 'Authorization': 'Bearer your-jwt-token',5 'Content-Type': 'application/json'6 },7 body: JSON.stringify({8 id: 19 })10});1112const result = await response.json();
Phản hồi
Trạng thái 200
{"success": true}