Rename IP list
POST https://geonix.com/personal/api/v1/{apiKey}/resident/list/rename
This endpoint allows you to rename an existing IP list within your residential proxy package. Renaming an IP list can help you better organize and identify your lists based on their purpose or content.
Headers
Name
Value
Accept
application/json
Content-Type
application/json
Path parameters
Name
Type
Description
apiKey*
string
API key to authorize requests
Body parameters
Name
Type
Description
id*
integer
The unique identifier of the IP list you want to rename.
title*
string
The new name you wish to assign to the IP list.
Request examples
curl -X 'POST' \
'https://geonix.com/personal/api/v1/YOUR_API_KEY/resident/list/rename' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"id": 3350393,
"title": "US Washington Garfield FIRST-STEP"
}'<?php
$apiKey = 'YOUR_API_KEY'; // Replace with your actual API key
$url = 'https://geonix.com/personal/api/v1/' . $apiKey . '/resident/list/rename';
$data = [
'id' => 3350393,
'title' => 'US Washington Garfield FIRST-STEP'
];
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => json_encode($data),
CURLOPT_HTTPHEADER => [
'Content-Type: application/json',
'accept: application/json'
],
]);
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Response examples
Last updated