Comment on page
Static Residential Proxies
The api_token can be found in our panel by going to your profile.
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/dedicated/{membership}/authorized-ips/?api_token=xxxx",
data: "_method=PUT&ips[]=1.1.1.1&ips[]=2.2.2.2",
dataType: "json",
type : "POST",
success : function(r) {
console.log(r);
}
});
Content-Type: x-www-form-urlencoded
Method: GET/PUT/POST
Content: _method=PUT&ips[]=1.1.1.1&geo[]=2.2.2.2
JSON Payload (must be PUT):
{
"key" : [
"value1",
"value2"
]
}
Example:
{
"ips" : [
"1.1.1.1",
"2.2.2.2"
]
}
get
https://shifter.io/api/v1/
dedicated/{membership}/authorized-ips/
put
https://shifter.io/api/v1/
dedicated/{membership}/authorized-ips/
get
https://shifter.io/api/v1/
dedicated/{membership}/proxies/
Last modified 3mo ago