Proxy löschen
Dieser Abschnitt erklärt die zuverlässige Konfiguration von Proxy löschen mit PinguProxy.
DELETE
/proxies/deleteBody-Parameter
Sicherheit
AuthorizationstringerforderlichJWT-Bearer-Token
Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
Request Body
idintegererforderlichID des zu löschenden Proxys
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();
Antwort
Status 200
{"success": true}