Proxy sil
Bu bölüm PinguProxy ile Proxy sil yapılandırmasını güvenilir biçimde açıklar.
DELETE
/proxies/deleteGövde parametreleri
Güvenlik
AuthorizationstringzorunluJWT Bearer token
Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
İstek gövdesi
idintegerzorunluSilinecek proxy’nin ID’si
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();
Yanıt
Durum 200
{"success": true}