Python (SDK)
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.private_networks.get(vlan_id="vlan_W6Q2D9ordKLpr")
# Handle response
print(res)package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.PrivateNetworks.Get(ctx, "vlan_W6Q2D9ordKLpr")
if err != nil {
log.Fatal(err)
}
if res.VirtualNetwork != nil {
// handle response
}
}import { Latitudesh } from "latitudesh-typescript-sdk";
const latitudesh = new Latitudesh({
bearer: process.env["LATITUDESH_BEARER"] ?? "",
});
async function run() {
const result = await latitudesh.privateNetworks.get({
vlanId: "vlan_W6Q2D9ordKLpr",
});
console.log(result);
}
run();curl --request GET \
--url https://api.latitude.sh/virtual_networks/{vlan_id} \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.latitude.sh/virtual_networks/{vlan_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.latitude.sh/virtual_networks/{vlan_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.get("https://api.latitude.sh/virtual_networks/{vlan_id}")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/virtual_networks/{vlan_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "vlan_W6Q2D9ordKLpr",
"type": "virtual_networks",
"attributes": {
"tags": [],
"vid": 2040,
"description": "Testing vlans",
"created_at": null,
"region": {
"city": "São Paulo 255",
"country": "Mexico 268",
"site": {
"id": "loc_1R3zq28EOWxyn",
"name": "São Paulo 255",
"slug": "SAO",
"facility": "São Paulo 255"
}
},
"project": {
"id": "proj_LA73qkknqaJ2o",
"name": "Incredible Wool Plate",
"slug": "incredible-wool-plate",
"description": "Heavy Duty Wooden Coat",
"billing_type": "Normal",
"billing_method": "Normal",
"bandwidth_alert": false,
"environment": null,
"billing": {
"subscription_id": null,
"type": "Normal",
"method": "Normal"
},
"stats": {
"databases": 0,
"ip_addresses": 2,
"prefixes": 0,
"servers": 1,
"storages": 0,
"virtual_machines": 0,
"vlans": 0
}
},
"assignments_count": 1
}
},
"meta": {}
}Private Networks
Retrieve VLAN
Retrieve a Virtual Network.
GET
/
virtual_networks
/
{vlan_id}
Python (SDK)
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.private_networks.get(vlan_id="vlan_W6Q2D9ordKLpr")
# Handle response
print(res)package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.PrivateNetworks.Get(ctx, "vlan_W6Q2D9ordKLpr")
if err != nil {
log.Fatal(err)
}
if res.VirtualNetwork != nil {
// handle response
}
}import { Latitudesh } from "latitudesh-typescript-sdk";
const latitudesh = new Latitudesh({
bearer: process.env["LATITUDESH_BEARER"] ?? "",
});
async function run() {
const result = await latitudesh.privateNetworks.get({
vlanId: "vlan_W6Q2D9ordKLpr",
});
console.log(result);
}
run();curl --request GET \
--url https://api.latitude.sh/virtual_networks/{vlan_id} \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.latitude.sh/virtual_networks/{vlan_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.latitude.sh/virtual_networks/{vlan_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.get("https://api.latitude.sh/virtual_networks/{vlan_id}")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/virtual_networks/{vlan_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "vlan_W6Q2D9ordKLpr",
"type": "virtual_networks",
"attributes": {
"tags": [],
"vid": 2040,
"description": "Testing vlans",
"created_at": null,
"region": {
"city": "São Paulo 255",
"country": "Mexico 268",
"site": {
"id": "loc_1R3zq28EOWxyn",
"name": "São Paulo 255",
"slug": "SAO",
"facility": "São Paulo 255"
}
},
"project": {
"id": "proj_LA73qkknqaJ2o",
"name": "Incredible Wool Plate",
"slug": "incredible-wool-plate",
"description": "Heavy Duty Wooden Coat",
"billing_type": "Normal",
"billing_method": "Normal",
"bandwidth_alert": false,
"environment": null,
"billing": {
"subscription_id": null,
"type": "Normal",
"method": "Normal"
},
"stats": {
"databases": 0,
"ip_addresses": 2,
"prefixes": 0,
"servers": 1,
"storages": 0,
"virtual_machines": 0,
"vlans": 0
}
},
"assignments_count": 1
}
},
"meta": {}
}Was this page helpful?
⌘I