Python (SDK)
import latitudesh_python_sdk
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.plans.update_bandwidth(data={
"type": latitudesh_python_sdk.UpdatePlansBandwidthPlansType.BANDWIDTH_PACKAGES,
"attributes": {
"project": "proj_z2A3DVZ3DnawP",
"quantity": 5,
"region_slug": "brazil",
},
})
# Handle response
print(res)package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"github.com/latitudesh/latitudesh-go-sdk/models/operations"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.Plans.UpdateBandwidth(ctx, operations.UpdatePlansBandwidthPlansRequestBody{
Data: &operations.UpdatePlansBandwidthPlansData{
Type: operations.UpdatePlansBandwidthPlansTypeBandwidthPackages.ToPointer(),
Attributes: &operations.UpdatePlansBandwidthPlansAttributes{
Project: latitudeshgosdk.Pointer("proj_z2A3DVZ3DnawP"),
Quantity: latitudeshgosdk.Pointer[int64](5),
RegionSlug: latitudeshgosdk.Pointer("brazil"),
},
},
})
if err != nil {
log.Fatal(err)
}
if res.BandwidthPackages != 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.plans.updateBandwidth({
data: {
type: "bandwidth_packages",
attributes: {
project: "proj_z2A3DVZ3DnawP",
quantity: 5,
regionSlug: "brazil",
},
},
});
console.log(result);
}
run();curl --request POST \
--url https://api.latitude.sh/plans/bandwidth \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"type": "bandwidth_packages",
"attributes": {
"project": "proj_z2A3DVZ3DnawP",
"region_slug": "brazil",
"quantity": 5
}
}
}
'const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
type: 'bandwidth_packages',
attributes: {project: 'proj_z2A3DVZ3DnawP', region_slug: 'brazil', quantity: 5}
}
})
};
fetch('https://api.latitude.sh/plans/bandwidth', 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/plans/bandwidth",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'data' => [
'type' => 'bandwidth_packages',
'attributes' => [
'project' => 'proj_z2A3DVZ3DnawP',
'region_slug' => 'brazil',
'quantity' => 5
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.post("https://api.latitude.sh/plans/bandwidth")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"type\": \"bandwidth_packages\",\n \"attributes\": {\n \"project\": \"proj_z2A3DVZ3DnawP\",\n \"region_slug\": \"brazil\",\n \"quantity\": 5\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/plans/bandwidth")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"data\": {\n \"type\": \"bandwidth_packages\",\n \"attributes\": {\n \"project\": \"proj_z2A3DVZ3DnawP\",\n \"region_slug\": \"brazil\",\n \"quantity\": 5\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"type": "bandwidth_packages",
"attributes": {
"project": {
"id": "proj_z2A3DVZ3DnawP",
"name": "Orn-Reilly",
"slug": "orn-reilly"
},
"packages": [
{
"region_slug": "united-states",
"unit_price": 0.5,
"currency": "USD",
"contracted": 10,
"total_price": 5
},
{
"region_slug": "brazil",
"unit_price": 4.6,
"currency": "USD",
"contracted": 0,
"total_price": 0
}
]
}
}
}Plans
Update bandwidth packages
Allows to increase or decrease bandwidth packages. Only admins and owners can request.
POST
/
plans
/
bandwidth
Python (SDK)
import latitudesh_python_sdk
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.plans.update_bandwidth(data={
"type": latitudesh_python_sdk.UpdatePlansBandwidthPlansType.BANDWIDTH_PACKAGES,
"attributes": {
"project": "proj_z2A3DVZ3DnawP",
"quantity": 5,
"region_slug": "brazil",
},
})
# Handle response
print(res)package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"github.com/latitudesh/latitudesh-go-sdk/models/operations"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.Plans.UpdateBandwidth(ctx, operations.UpdatePlansBandwidthPlansRequestBody{
Data: &operations.UpdatePlansBandwidthPlansData{
Type: operations.UpdatePlansBandwidthPlansTypeBandwidthPackages.ToPointer(),
Attributes: &operations.UpdatePlansBandwidthPlansAttributes{
Project: latitudeshgosdk.Pointer("proj_z2A3DVZ3DnawP"),
Quantity: latitudeshgosdk.Pointer[int64](5),
RegionSlug: latitudeshgosdk.Pointer("brazil"),
},
},
})
if err != nil {
log.Fatal(err)
}
if res.BandwidthPackages != 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.plans.updateBandwidth({
data: {
type: "bandwidth_packages",
attributes: {
project: "proj_z2A3DVZ3DnawP",
quantity: 5,
regionSlug: "brazil",
},
},
});
console.log(result);
}
run();curl --request POST \
--url https://api.latitude.sh/plans/bandwidth \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"type": "bandwidth_packages",
"attributes": {
"project": "proj_z2A3DVZ3DnawP",
"region_slug": "brazil",
"quantity": 5
}
}
}
'const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
type: 'bandwidth_packages',
attributes: {project: 'proj_z2A3DVZ3DnawP', region_slug: 'brazil', quantity: 5}
}
})
};
fetch('https://api.latitude.sh/plans/bandwidth', 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/plans/bandwidth",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'data' => [
'type' => 'bandwidth_packages',
'attributes' => [
'project' => 'proj_z2A3DVZ3DnawP',
'region_slug' => 'brazil',
'quantity' => 5
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.post("https://api.latitude.sh/plans/bandwidth")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"type\": \"bandwidth_packages\",\n \"attributes\": {\n \"project\": \"proj_z2A3DVZ3DnawP\",\n \"region_slug\": \"brazil\",\n \"quantity\": 5\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/plans/bandwidth")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"data\": {\n \"type\": \"bandwidth_packages\",\n \"attributes\": {\n \"project\": \"proj_z2A3DVZ3DnawP\",\n \"region_slug\": \"brazil\",\n \"quantity\": 5\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"type": "bandwidth_packages",
"attributes": {
"project": {
"id": "proj_z2A3DVZ3DnawP",
"name": "Orn-Reilly",
"slug": "orn-reilly"
},
"packages": [
{
"region_slug": "united-states",
"unit_price": 0.5,
"currency": "USD",
"contracted": 10,
"total_price": 5
},
{
"region_slug": "brazil",
"unit_price": 4.6,
"currency": "USD",
"contracted": 0,
"total_price": 0
}
]
}
}
}Was this page helpful?
⌘I