Rotating Residential Proxies
Making API Requests
Method PUT
To simulate PUT, set the Content-Type header to application/x-www-form-urlencoded and add a field named _method with the value PUT.
Example:
$.ajax({
url: "/api/v1/backconnect/{membership}/authorized-ips?api_token=xxxx",
data: "_method=PUT&ips[]=1.1.1.1&ips[]=1.1.1.2",
dataType: "json",
type : "POST",
success : function(r) {
console.log(r);
}
});HTT Form Payload
Content-Type: x-www-form-urlencoded
Method: GET/PUT/POST
Content: _method=PUT&geo[]=us&geo[]=uk&geo[]=ca
JSON Payload (must be PUT):
GET Authorized IPs
GET https://shifter.io/api/v1/backconnect/{membership}/authorized-ips/
Path Parameters
membership*
String
The ID can be found on the membership page.
PUT Authorized IPs
PUT https://shifter.io/api/v1/backconnect/{membership}/authorized-ips/
Path Parameters
membership*
String
The ID can be found on the membership page.
GET GEO
GET https://shifter.io/api/v1/backconnect/{membership}/geo/
Path Parameters
membership*
String
The ID can be found on the membership page.
PUT GEO
PUT https://shifter.io/api/v1/backconnect/{membership}/geo/
Path Parameters
membership*
String
The ID can be found on the membership page.
geo*
Array
advanced_geo
Array
GET Proxies
GET https://shifter.io/api/v1/backconnect/{membership}/proxies/
Path Parameters
membership*
String
The ID can be found on the membership page.
Last updated
Was this helpful?