ਸਾਰੇ ਡੋਮੇਨਾਂ ਦੀ ਸੂਚੀ ਬਣਾਓ
ਆਪਣੇ ਅਕਾਊਂਟ ਹੇਠ ਰਜਿਸਟਰਡ ਸਭ ਡੋਮੇਨਾਂ ਦੀ ਲਿਸਟ ਲਵੋ ।
ਪੁੱਛਗਿੱਛ ਪੈਰਾਮੀਟਰ
ਪੈਰਾਮੀਟਰ
ਦੀ ਕਿਸਮ
ਲੋੜੀਂਦਾ
ਵੇਰਵਾ
status
string
ਕੋਈ ਨਹੀਂ
Filter by status: active, pending, expired, locked
search
string
ਕੋਈ ਨਹੀਂ
ਨਾਮ ਨਾਲ ਡੋਮੇਨ ਖੋਜੋ
ਉਦਾਹਰਨ ਬੇਨਤੀ
curl -X GET "https://admin.vps.org/api/v1/domains/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
ਕਾਪੀ
import requests
url = "https://admin.vps.org/api/v1/domains/"
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())
ਕਾਪੀ
const response = await fetch('https://admin.vps.org/api/v1/domains/', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
}
});
const domains = await response.json();
console.log(domains);
ਕਾਪੀ
ਉਦਾਹਰਨ ਜਵਾਬ
{
"count": 3,
"results": [
{
"id": 101,
"domain_name": "example.com",
"status": "active",
"registration_date": "2023-01-15T10:30:00Z",
"expiration_date": "2026-01-15T10:30:00Z",
"auto_renew": true,
"locked": true,
"nameservers": [
"ns1.vps.org",
"ns2.vps.org"
],
"privacy_protection": true,
"dns_managed_by": "vps.org"
},
{
"id": 102,
"domain_name": "myapp.io",
"status": "active",
"registration_date": "2024-06-20T14:15:00Z",
"expiration_date": "2025-06-20T14:15:00Z",
"auto_renew": false,
"locked": false,
"nameservers": [
"ns1.cloudflare.com",
"ns2.cloudflare.com"
],
"privacy_protection": false,
"dns_managed_by": "external"
}
]
}
ਜਵਾਬ ਸਥਿਤੀ ਕੋਡ
200
ਡੋਮੇਨ ਸੂਚੀ ਸਫਲਤਾਪੂਰਵਕ ਪ੍ਰਾਪਤ ਕੀਤੀ ਗਈ
401
ਅਣਅਧਿਕਾਰਤ - ਅਵੈਧ ਜਾਂ ਗੁੰਮ ਪ੍ਰਮਾਣੀਕਰਨ ਟੋਕਨ
ਨਵਾਂ ਡੋਮੇਨ ਰਜਿਸਟਰ ਕਰੋ
ਨਵਾਂ ਡੋਮੇਨ ਨਾਂ ਰਜਿਸਟਰਡ ਕਰੋ । ਰਜਿਸਟਰਡ ਹੋਣ ਤੋਂ ਪਹਿਲਾਂ ਡੋਮੇਨ ਉਪਲੱਬਧਤਾ ਦੀ ਜਾਂਚ ਕਰੋ ।
ਬਾਡੀ ਪੈਰਾਮੀਟਰ ਦੀ ਬੇਨਤੀ ਕਰੋ
ਪੈਰਾਮੀਟਰ
ਦੀ ਕਿਸਮ
ਲੋੜੀਂਦਾ
ਵੇਰਵਾ
domain_name
string
ਹਾਂ
Domain name to register (e.g., "example.com")
years
integer
ਕੋਈ ਨਹੀਂ
Registration period in years (1-10, default: 1)
auto_renew
boolean
ਕੋਈ ਨਹੀਂ
Enable automatic renewal (default: true)
privacy_protection
boolean
ਕੋਈ ਨਹੀਂ
Enable WHOIS privacy protection (default: true)
nameservers
array
ਕੋਈ ਨਹੀਂ
Custom nameservers (default: VPS.org nameservers)
ਉਦਾਹਰਨ ਬੇਨਤੀ
cURL
Python
JavaScript
PHP
curl -X POST "https://admin.vps.org/api/v1/domains/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"domain_name": "mynewdomain.com",
"years": 2,
"auto_renew": true,
"privacy_protection": true
}'
ਕਾਪੀ
import requests
url = "https://admin.vps.org/api/v1/domains/"
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json"
}
data = {
"domain_name": "mynewdomain.com",
"years": 2,
"auto_renew": True,
"privacy_protection": True
}
response = requests.post(url, headers=headers, json=data)
print(response.json())
ਕਾਪੀ
const response = await fetch('https://admin.vps.org/api/v1/domains/', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
domain_name: 'mynewdomain.com',
years: 2,
auto_renew: true,
privacy_protection: true
})
});
const domain = await response.json();
console.log(domain);
ਕਾਪੀ
$data = [
'domain_name' => 'mynewdomain.com',
'years' => 2,
'auto_renew' => true,
'privacy_protection' => true
];
$ch = curl_init('https://admin.vps.org/api/v1/domains/');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: Bearer YOUR_API_TOKEN',
'Content-Type: application/json'
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$domain = json_decode($response, true);
curl_close($ch);
ਕਾਪੀ
ਉਦਾਹਰਨ ਜਵਾਬ
{
"id": 103,
"domain_name": "mynewdomain.com",
"status": "pending",
"registration_date": "2026-01-16T16:00:00Z",
"expiration_date": "2028-01-16T16:00:00Z",
"auto_renew": true,
"locked": true,
"nameservers": [
"ns1.vps.org",
"ns2.vps.org"
],
"privacy_protection": true,
"dns_managed_by": "vps.org",
"total_cost": 24.98,
"message": "Domain registration initiated. Processing may take 5-10 minutes."
}
ਜਵਾਬ ਸਥਿਤੀ ਕੋਡ
201
Domain registration initiated successfully
400
Bad Request - Invalid domain name or domain already registered
401
ਅਣਅਧਿਕਾਰਤ - ਅਵੈਧ ਜਾਂ ਗੁੰਮ ਪ੍ਰਮਾਣੀਕਰਨ ਟੋਕਨ
402
Payment Required - Insufficient account balance
ਨੋਟ: Domain registration is not instant. Status will change from pending to active within 5-10 minutes. You'll receive an email confirmation when registration completes.
ਡੋਮੇਨ ਵੇਰਵਾ ਲਵੋ
ਇੱਕ ਖਾਸ ਡੋਮੇਨ ਬਾਰੇ ਵੇਰਵਾ ਜਾਣਕਾਰੀ ਲਵੋ ।
ਮਾਰਗ ਪੈਰਾਮੀਟਰ
ਪੈਰਾਮੀਟਰ
ਦੀ ਕਿਸਮ
ਲੋੜੀਂਦਾ
ਵੇਰਵਾ
domain_id
integer
ਹਾਂ
Unique domain ID
ਉਦਾਹਰਨ ਬੇਨਤੀ
curl -X GET "https://admin.vps.org/api/v1/domains/101/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
ਕਾਪੀ
import requests
domain_id = 101
url = f"https://admin.vps.org/api/v1/domains/{domain_id}/"
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())
ਕਾਪੀ
const domainId = 101;
const response = await fetch(`https://admin.vps.org/api/v1/domains/${domainId}/`, {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
}
});
const domain = await response.json();
console.log(domain);
ਕਾਪੀ
ਉਦਾਹਰਨ ਜਵਾਬ
{
"id": 101,
"domain_name": "example.com",
"status": "active",
"registration_date": "2023-01-15T10:30:00Z",
"expiration_date": "2026-01-15T10:30:00Z",
"auto_renew": true,
"locked": true,
"nameservers": [
"ns1.vps.org",
"ns2.vps.org"
],
"privacy_protection": true,
"dns_managed_by": "vps.org",
"registrar": "VPS.org",
"days_until_expiration": 730,
"whois_info": {
"registrant": "Privacy Protected",
"admin_contact": "Privacy Protected",
"tech_contact": "Privacy Protected",
"created_date": "2023-01-15",
"updated_date": "2025-12-20"
},
"dns_records_count": 12
}
ਜਵਾਬ ਸਥਿਤੀ ਕੋਡ
200
Successfully retrieved domain details
401
ਅਣਅਧਿਕਾਰਤ - ਅਵੈਧ ਜਾਂ ਗੁੰਮ ਪ੍ਰਮਾਣੀਕਰਨ ਟੋਕਨ
404
ਨਹੀਂ ਮਿਲਿਆ - ਡੋਮੇਨ ਮੌਜੂਦ ਨਹੀਂ ਹੈ
ਡੋਮੇਨ ਸੈਟਿੰਗ ਅੱਪਡੇਟ
ਡੋਮੇਨ ਸੰਰਚਨਾ ਜਿਵੇਂ ਕਿ ਆਟੋ- ਨਵੀਨੀਕਰਨ, ਨਾਂ ਸਰਵਰ ਅਤੇ ਪਰਾਈਵੇਸੀ ਸੈਟਿੰਗ ਅੱਪਡੇਟ ਕਰੋ ।
ਮਾਰਗ ਪੈਰਾਮੀਟਰ
ਪੈਰਾਮੀਟਰ
ਦੀ ਕਿਸਮ
ਲੋੜੀਂਦਾ
ਵੇਰਵਾ
domain_id
integer
ਹਾਂ
Unique domain ID
ਬਾਡੀ ਪੈਰਾਮੀਟਰ ਦੀ ਬੇਨਤੀ ਕਰੋ
ਪੈਰਾਮੀਟਰ
ਦੀ ਕਿਸਮ
ਲੋੜੀਂਦਾ
ਵੇਰਵਾ
auto_renew
boolean
ਕੋਈ ਨਹੀਂ
Enable or disable automatic renewal
privacy_protection
boolean
ਕੋਈ ਨਹੀਂ
Enable or disable WHOIS privacy
nameservers
array
ਕੋਈ ਨਹੀਂ
Update nameservers (2-4 nameservers required)
locked
boolean
ਕੋਈ ਨਹੀਂ
Lock or unlock domain to prevent transfers
ਉਦਾਹਰਨ ਬੇਨਤੀ
curl -X PUT "https://admin.vps.org/api/v1/domains/101/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"auto_renew": false,
"nameservers": [
"ns1.cloudflare.com",
"ns2.cloudflare.com"
]
}'
ਕਾਪੀ
import requests
domain_id = 101
url = f"https://admin.vps.org/api/v1/domains/{domain_id}/"
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json"
}
data = {
"auto_renew": False,
"nameservers": [
"ns1.cloudflare.com",
"ns2.cloudflare.com"
]
}
response = requests.put(url, headers=headers, json=data)
print(response.json())
ਕਾਪੀ
const domainId = 101;
const response = await fetch(`https://admin.vps.org/api/v1/domains/${domainId}/`, {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
auto_renew: false,
nameservers: [
'ns1.cloudflare.com',
'ns2.cloudflare.com'
]
})
});
const domain = await response.json();
console.log(domain);
ਕਾਪੀ
ਉਦਾਹਰਨ ਜਵਾਬ
{
"id": 101,
"domain_name": "example.com",
"status": "active",
"auto_renew": false,
"nameservers": [
"ns1.cloudflare.com",
"ns2.cloudflare.com"
],
"privacy_protection": true,
"locked": true,
"message": "Domain settings updated successfully. Nameserver changes may take up to 24 hours to propagate."
}
ਜਵਾਬ ਸਥਿਤੀ ਕੋਡ
200
Domain updated successfully
400
Bad Request - Invalid parameters
401
ਅਣਅਧਿਕਾਰਤ - ਅਵੈਧ ਜਾਂ ਗੁੰਮ ਪ੍ਰਮਾਣੀਕਰਨ ਟੋਕਨ
404
ਨਹੀਂ ਮਿਲਿਆ - ਡੋਮੇਨ ਮੌਜੂਦ ਨਹੀਂ ਹੈ
ਡੋਮੇਨ ਹਟਾਓ
ਆਪਣੇ ਅਕਾਊਂਟ ਤੋਂ ਡੋਮੇਨ ਹਟਾਓ । ਇਹ ਡੋਮੇਨ ਰਜਿਸਟਰੇਸ਼ਨ ਰੱਦ ਨਹੀਂ ਕਰੇਗਾ - ਇਹ ਸਿਰਫ ਤੁਹਾਡੇ VPS.org ਅਕਾਊਂਟ ਪਰਬੰਧ ਤੋਂ ਹੀ ਹਟਾਏਗਾ ।
ਮਾਰਗ ਪੈਰਾਮੀਟਰ
ਪੈਰਾਮੀਟਰ
ਦੀ ਕਿਸਮ
ਲੋੜੀਂਦਾ
ਵੇਰਵਾ
domain_id
integer
ਹਾਂ
Unique domain ID
ਉਦਾਹਰਨ ਬੇਨਤੀ
curl -X DELETE "https://admin.vps.org/api/v1/domains/101/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
ਕਾਪੀ
import requests
domain_id = 101
url = f"https://admin.vps.org/api/v1/domains/{domain_id}/"
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json"
}
response = requests.delete(url, headers=headers)
print(response.status_code)
ਕਾਪੀ
const domainId = 101;
const response = await fetch(`https://admin.vps.org/api/v1/domains/${domainId}/`, {
method: 'DELETE',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
}
});
console.log(response.status);
ਕਾਪੀ
ਜਵਾਬ ਸਥਿਤੀ ਕੋਡ
204
Domain removed from account successfully
401
ਅਣਅਧਿਕਾਰਤ - ਅਵੈਧ ਜਾਂ ਗੁੰਮ ਪ੍ਰਮਾਣੀਕਰਨ ਟੋਕਨ
404
ਨਹੀਂ ਮਿਲਿਆ - ਡੋਮੇਨ ਮੌਜੂਦ ਨਹੀਂ ਹੈ
Important: Deleting a domain from your VPS.org account does NOT cancel the registration. The domain will continue to be registered and will auto-renew if enabled. To cancel a domain registration, disable auto-renewal and let it expire.
ਡੋਮੇਨ ਟਰਾਂਸਫਰ
ਹੋਰ ਰਜਿਸਟਰੇਟਰ ਤੋਂ VPS.org ਲਈ ਡੋਮੇਨ ਟਰਾਂਸਫਰ ਸ਼ੁਰੂ ਕਰੋ ।
ਮਾਰਗ ਪੈਰਾਮੀਟਰ
ਪੈਰਾਮੀਟਰ
ਦੀ ਕਿਸਮ
ਲੋੜੀਂਦਾ
ਵੇਰਵਾ
domain_id
integer
ਹਾਂ
Unique domain ID
ਬਾਡੀ ਪੈਰਾਮੀਟਰ ਦੀ ਬੇਨਤੀ ਕਰੋ
ਪੈਰਾਮੀਟਰ
ਦੀ ਕਿਸਮ
ਲੋੜੀਂਦਾ
ਵੇਰਵਾ
auth_code
string
ਹਾਂ
EPP/Authorization code from current registrar
auto_renew
boolean
ਕੋਈ ਨਹੀਂ
Enable auto-renewal after transfer (default: true)
ਉਦਾਹਰਨ ਬੇਨਤੀ
curl -X POST "https://admin.vps.org/api/v1/domains/101/transfer/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"auth_code": "Xy9Kl2Mn#4pQ",
"auto_renew": true
}'
ਕਾਪੀ
import requests
domain_id = 101
url = f"https://admin.vps.org/api/v1/domains/{domain_id}/transfer/"
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json"
}
data = {
"auth_code": "Xy9Kl2Mn#4pQ",
"auto_renew": True
}
response = requests.post(url, headers=headers, json=data)
print(response.json())
ਕਾਪੀ
const domainId = 101;
const response = await fetch(`https://admin.vps.org/api/v1/domains/${domainId}/transfer/`, {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
auth_code: 'Xy9Kl2Mn#4pQ',
auto_renew: true
})
});
const transfer = await response.json();
console.log(transfer);
ਕਾਪੀ
ਉਦਾਹਰਨ ਜਵਾਬ
{
"id": 101,
"domain_name": "example.com",
"transfer_status": "pending",
"transfer_initiated_at": "2026-01-16T16:30:00Z",
"estimated_completion": "2026-01-23T16:30:00Z",
"message": "Domain transfer initiated. You should receive a confirmation email from your current registrar. Transfer typically completes within 5-7 days.",
"next_steps": [
"Check email for transfer authorization request",
"Approve transfer with current registrar",
"Wait for transfer to complete (5-7 days)",
"Domain will be automatically renewed for 1 year upon completion"
]
}
ਜਵਾਬ ਸਥਿਤੀ ਕੋਡ
200
Transfer initiated successfully
400
Bad Request - Invalid auth code or domain not eligible for transfer
401
ਅਣਅਧਿਕਾਰਤ - ਅਵੈਧ ਜਾਂ ਗੁੰਮ ਪ੍ਰਮਾਣੀਕਰਨ ਟੋਕਨ
404
ਨਹੀਂ ਮਿਲਿਆ - ਡੋਮੇਨ ਮੌਜੂਦ ਨਹੀਂ ਹੈ
402
Payment Required - Insufficient account balance for transfer fee
ਟਰਾਂਸਫਰ ਲੋੜਾਂ:
ਡੋਮੇਨ ਨੂੰ ਮੌਜੂਦਾ ਰਜਿਸਟਰੇਟਰ ਉੱਤੇ ਅਣ- ਲਾਕ ਕਰਨਾ ਪਵੇਗਾ
ਡੋਮੇਨ ਘੱਟੋ- ਘੱਟ 60 ਦਿਨ ਪੁਰਾਣਾ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ
ਠੀਕ EPP/Auth ਕੋਡ ਲੋੜੀਦਾ ਹੈ
ਮਨਜ਼ੂਰੀ ਲਈ WHOIS ਈ-ਮੇਲ ਪਹੁੰਚਯੋਗ ਹੋਣੀ ਚਾਹੀਦੀ ਹੈ
ਟਰਾਂਸਫਰ ਵਿੱਚ 1 ਸਾਲ ਦੀ ਨਵੀਨੀਕਰਨ ਸ਼ਾਮਲ ਹੈ (ਫੀਸ ਲਾਗੂ ਹੈ)
ਡੋਮੇਨ ਕੀਮਤ
ਪ੍ਰਸਿੱਧ TLDs
TLD
ਰਜਿਸਟਰੇਸ਼ਨ (1 ਸਾਲ)
ਮੁੜ- ਪ੍ਰਾਪਤ
ਟਰਾਂਸਫਰ
.com
$12.99
$12.99
$12.99
.net
$14.99
$14.99
$14.99
.org
$13.99
$13.99
$13.99
.io
$39.99
$39.99
$39.99
.dev
$14.99
$14.99
$14.99
.app
$14.99
$14.99
$14.99
.co
$24.99
$24.99
$24.99
ਸ਼ਾਮਲ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ
✓ ਮੁਫਤ WHOIS ਨਿੱਜੀ ਸੁਰੱਖਿਆ
✓ ਮੁਫਤ DNS ਪਰਬੰਧ
✓ ਮੁਫਤ ਈ- ਮੇਲ ਅੱਗੇ ਭੇਜੋ
✓ ਮੁਫਤ ਡੋਮੇਨ ਅੱਗੇ ਭੇਜੋ
✓ ਮੁਫਤ ਡੋਮੇਨ ਲਾਕਿੰਗ
✓ 24/7 ਸਹਿਯੋਗ
✓ ਸੌਖਾ ਡੋਮੇਨ ਪਰਬੰਧ
✓ ਆਟੋ- ਨਵੀਨੀਕਰਨ ਚੋਣ
ਡੋਮੇਨ ਪਰਬੰਧਨ ਲਈ ਵਧੀਆ ਪ੍ਰੈਕਟਿਸ
ਸੁਰੱਖਿਆ
ਡੋਮੇਨ ਲਾਕਿੰਗ ਯੋਗ: ਬੇਅਦਬੀ ਟਰਾਂਸਫਰ ਰੋਕਦਾ ਹੈ
ਨਿੱਜੀ ਸੁਰੱਖਿਆ ਯੋਗ: WHOIS ਤੋਂ ਤੁਹਾਡੀ ਨਿੱਜੀ ਜਾਣਕਾਰੀ ਓਹਲੇ
ਮਜ਼ਬੂਤ ਪਾਸਵਰਡ ਵਰਤੋਂ: ਆਪਣੇ VPS.org ਅਕਾਊਂਟ ਦੀ ਸੁਰੱਖਿਆ
2FA ਯੋਗ: ਆਪਣੇ ਅਕਾਊਂਟ ਲਈ ਵਾਧੂ ਸੁਰੱਖਿਆ ਸ਼ਾਮਲ
ਮਿਆਦ ਪੁੱਗਣ ਮਿਤੀ ਵੇਖੋ: ਆਟੋ- ਮੁੜ- ਤਾਜ਼ਾ ਜਾਂ ਕੈਲੰਡਰ ਯਾਦ ਪੱਤਰ ਸੈੱਟਅੱਪ
ਸੰਰਚਨਾ
DNS ਸੈੱਟਅੱਪ: ਸੌਖਾ ਪਰਬੰਧ ਲਈ ਨਾਂ ਸਰਵਰਾਂ ਨੂੰ VPS.org ਵੱਲ ਇਸ਼ਾਰਾ ਕਰੋ
ਆਟੋ- ਨਵੀਨੀਕਰਨ: ਗ਼ਲਤ ਡੋਮੇਨ ਮਿਆਦ ਪੁੱਗਣ ਤੋਂ ਰੋਕਣ ਲਈ ਯੋਗ
ਸੰਪਰਕ ਜਾਣਕਾਰੀ: WHOIS ਸੰਪਰਕ ਜਾਣਕਾਰੀ ਅੱਪਡੇਟ ਰੱਖੋ
ਬੈਕਅੱਪ DNS: ਵਾਧੂ ਲਈ ਸੈਕੰਡਰੀ DNS ਪਰੋਵਾਈਡਰ ਨੂੰ ਵਿਚਾਰੋ
ਟਰਾਂਸਫਰ
60- ਦਿਨ ਲਾਕ: ਡੋਮੇਨ ਰਜਿਸਟਰੇਸ਼ਨ ਜਾਂ ਪਿਛਲੇ ਟਰਾਂਸਫਰ ਦੇ 60 ਦਿਨਾਂ ਦੇ ਅੰਦਰ ਟਰਾਂਸਫਰ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ
ਡੋਮੇਨ ਅਣ- ਲਾਕ: ਟਰਾਂਸਫਰ ਤੋਂ ਪਹਿਲਾਂ ਮੌਜੂਦਾ ਰਜਿਸਟਰਾਟਰ ਉੱਤੇ ਲਾਕ ਖੋਲ੍ਹਣਾ ਪਵੇਗਾ
ਪਰਮਾਣਕਿਤਾ ਕੋਡ ਲਵੋ: ਮੌਜੂਦਾ ਰਜਿਸਟਰੇਟਰ ਤੋਂ EPP/ਪ੍ਰਮਾਣਿਕਤਾ ਕੋਡ ਮੰਗੋ
ਈ- ਮੇਲ ਚੈੱਕ: ਤੁਹਾਨੂੰ ਟਰਾਂਸਫਰ ਕਾਰਵਾਈ ਦੌਰਾਨ ਮਨਜ਼ੂਰੀ ਈ- ਮੇਲ ਮਿਲੇਗੀ
ਅੱਗੇ ਯੋਜਨਾ: ਤਬਾਦਲੇ ਪੂਰੇ ਹੋਣ ਵਿੱਚ5ਤੋਂ7ਦਿਨ ਲੱਗ ਸਕਦੇ ਹਨ।