VPS.org API

REST API मिसिलीकरण

खाता

खाता प्रोफाइल र API टोकन सूचना पुन: प्राप्त गर्नुहोस् । कुन खाता र अनुमतिहरू API टोकनसँग सम्बन्धित छन् पहिचान गर्नका लागि उपयोगी ।

अन्तिम बिन्दुहरू १ अन्त बिन्दु
आधार मार्ग /api/v1/account
प्राप्त गर्नुहोस् /api/v1/account/me/

खाता र टोकन सूचना प्राप्त गर्नुहोस्

अनुरोधमा प्रयोग गरिएको API टोकनका लागि खाता प्रोफाइल मेटाडेटा र टोकन क्षेत्र/ अनुमतिहरू फर्काउँछ । यो तपाईँले बहुविध API टोकनहरू प्रबन्ध गर्दा र टोकन कुन खातामा पर्दछ र यसको के अनुमतिहरू छन् पहिचान गर्न आवश्यक पर्दा उपयोगी हुन्छ ।

प्रमाणीकरण

वैध API टोकन आवश्यक हुन्छ । कुनै पनि सक्रिय टोकनले यसको अनुमति क्षेत्रलाई हेरी यो अन्त बिन्दु पहुँच गर्न सक्छ ।

उदाहरण अनुरोध

cURL
Python
JavaScript
PHP
curl -X GET "https://admin.vps.org/api/v1/account/me/" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json"
import requests

url = "https://admin.vps.org/api/v1/account/me/"
headers = {
    "Authorization": "Bearer YOUR_API_TOKEN",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers)
data = response.json()

print(f"Account: {data['account']['email']}")
print(f"Token: {data['token']['name']}")
print(f"Permissions: {data['token']['permissions']}")
const response = await fetch('https://admin.vps.org/api/v1/account/me/', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_API_TOKEN',
    'Content-Type': 'application/json'
  }
});

const data = await response.json();
console.log(`Account: ${data.account.email}`);
console.log(`Token: ${data.token.name}`);
console.log(`Permissions:`, data.token.permissions);
$ch = curl_init('https://admin.vps.org/api/v1/account/me/');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'Authorization: Bearer YOUR_API_TOKEN',
    'Content-Type: application/json'
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($ch);
$data = json_decode($response, true);
curl_close($ch);

echo "Account: " . $data['account']['email'] . "\n";
echo "Token: " . $data['token']['name'] . "\n";
echo "Permissions: " . implode(', ', $data['token']['permissions']) . "\n";

उदाहरण प्रतिक्रिया

{
  "account": {
    "email": "john@example.com",
    "first_name": "John",
    "last_name": "Doe",
    "company_name": "Acme Inc.",
    "created_at": "2024-06-15"
  },
  "token": {
    "name": "Production Deploy Key",
    "permissions": [
      "servers:list",
      "servers:create",
      "servers:power",
      "dns:*"
    ],
    "created_at": "2025-01-10T14:30:00Z",
    "last_used_at": "2025-02-11T08:45:12Z",
    "expires_at": null,
    "is_expired": false
  }
}

प्रतिक्रिया क्षेत्रहरू

account object
फिल्ड प्रकारहरू वर्णन
email string Account email address
first_name string | null Account holder's first name
last_name string | null Account holder's last name
company_name string | null Company name (if set)
created_at date Account creation date (YYYY-MM-DD)
token object
फिल्ड प्रकारहरू वर्णन
name string Name assigned to this API token
permissions array List of permission strings (e.g. servers:list, dns:*). See Authentication docs for permission format.
created_at datetime When the token was created (ISO 8601)
last_used_at datetime | null Last time the token was used for authentication
expires_at datetime | null Token expiration date (null if no expiration)
is_expired boolean Whether the token has expired

प्रतिक्रिया स्थिति सङ्केत

200 Successfully retrieved account and token information
401 Unauthorized - Invalid, expired, or missing API token

सामान्य प्रयोगका केसहरू

टोकन मालिक पहिचान गर्नुहोस्

विभिन्न अनुप्रयोगहरूमा बहुविध API टोकनहरू प्रबन्ध गर्दा, यो अन्त बिन्दु प्रयोग गरेर कुन खातामा टोकनहरू सम्बन्धित छ रुजु गर्नुहोस्:

# Check which account this token is associated with
response = requests.get(
    "https://admin.vps.org/api/v1/account/me/",
    headers={"Authorization": f"Bearer {api_token}"}
)
account = response.json()["account"]
print(f"This token belongs to: {account['email']}")

टोकन अनुमति रुजु गर्नुहोस्

API कलहरू गर्नु अघि, हालको टोकनसँग के अनुमतिहरू छन् जाँच गर्नुहोस्:

# Check token permissions before performing an action
response = requests.get(
    "https://admin.vps.org/api/v1/account/me/",
    headers={"Authorization": f"Bearer {api_token}"}
)
permissions = response.json()["token"]["permissions"]

if "servers:create" in permissions or "servers:*" in permissions:
    # Token has permission to create servers
    create_server()
else:
    print("Token does not have servers:create permission")

टोकन म्याद समाप्ति मनिटर गर्नुहोस्

तपाईँको टोकन म्याद समाप्त हुने क्रममा छ भने जाँच गर्नुहोस्:

from datetime import datetime

response = requests.get(
    "https://admin.vps.org/api/v1/account/me/",
    headers={"Authorization": f"Bearer {api_token}"}
)
token_info = response.json()["token"]

if token_info["expires_at"]:
    expires = datetime.fromisoformat(token_info["expires_at"])
    days_left = (expires - datetime.now()).days
    if days_left < 7:
        print(f"Warning: Token expires in {days_left} days")
else:
    print("Token has no expiration date")

अनुमति सन्दर्भ

अनुमतिहरू ढाँचाको पालना गर्दछ resource:action. प्रयोग गर्नुहोस् resource:* संसाधनमा पूर्ण पहुँचका लागि, वा *:* पूर्ण API पहुँच लागि।

स्रोत उपलब्ध कार्य
servers list, create, update, delete, power, backup, snapshot, resize, *
domains list, search, update, renew, *
dns list, create, update, delete, *
snapshots list, delete, *
backups list, *
ssh-keys list, create, delete, *
plans list, *
locations list, *
deployments list, create, delete, *
billing list, *
Manage your tokens: Create, edit, and revoke API tokens at admin.vps.org/account/developers/