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.user_data.patch_user_data(user_data_id="ud_Av9BVDavORm1W", data={
"id": "ud_Av9BVDavORm1W",
"type": latitudesh_python_sdk.PatchUserDataUserDataType.USER_DATA,
"attributes": {
"content": "I2Nsb3VkLWNvbmZpZwpydW5jbWQ6CiAtIFsgdG91Y2gsICAvaG9tZS91YnVudHUvdGVzdCBd",
},
})
# 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.UserData.Update(ctx, "ud_Av9BVDavORm1W", &operations.PatchUserDataUserDataRequestBody{
Data: operations.PatchUserDataUserDataData{
ID: "ud_Av9BVDavORm1W",
Type: operations.PatchUserDataUserDataTypeUserData,
Attributes: &operations.PatchUserDataUserDataAttributes{
Content: latitudeshgosdk.Pointer("I2Nsb3VkLWNvbmZpZwpydW5jbWQ6CiAtIFsgdG91Y2gsICAvaG9tZS91YnVudHUvdGVzdCBd"),
},
},
})
if err != nil {
log.Fatal(err)
}
if res.UserDataObject != 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.userData.update({
userDataId: "<id>",
});
console.log(result);
}
run();curl --request PATCH \
--url https://api.latitude.sh/user_data/{user_data_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"id": "<string>",
"type": "user_data",
"attributes": {
"description": "<string>",
"content": "<string>"
}
}
}
'const options = {
method: 'PATCH',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
id: '<string>',
type: 'user_data',
attributes: {description: '<string>', content: '<string>'}
}
})
};
fetch('https://api.latitude.sh/user_data/{user_data_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/user_data/{user_data_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'data' => [
'id' => '<string>',
'type' => 'user_data',
'attributes' => [
'description' => '<string>',
'content' => '<string>'
]
]
]),
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.patch("https://api.latitude.sh/user_data/{user_data_id}")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"id\": \"<string>\",\n \"type\": \"user_data\",\n \"attributes\": {\n \"description\": \"<string>\",\n \"content\": \"<string>\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/user_data/{user_data_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"data\": {\n \"id\": \"<string>\",\n \"type\": \"user_data\",\n \"attributes\": {\n \"description\": \"<string>\",\n \"content\": \"<string>\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"type": "user_data",
"id": "<string>",
"attributes": {
"description": "<string>",
"content": "<string>",
"decoded_content": "<string>",
"project": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"billing_type": "<string>",
"provisioning_type": "<string>",
"billing_method": "<string>",
"bandwidth_alert": true,
"environment": "<string>",
"billing": {
"subscription_id": "<string>",
"type": "<string>",
"method": "<string>"
},
"stats": {
"databases": 123,
"ip_addresses": 123,
"prefixes": 123,
"servers": 123,
"storages": 123,
"virtual_machines": 123,
"vlans": 123
}
},
"created_at": "<string>",
"updated_at": "<string>"
}
},
"meta": {}
}User data
Update user data
Allow you update User Data in a team.
PATCH
/
user_data
/
{user_data_id}
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.user_data.patch_user_data(user_data_id="ud_Av9BVDavORm1W", data={
"id": "ud_Av9BVDavORm1W",
"type": latitudesh_python_sdk.PatchUserDataUserDataType.USER_DATA,
"attributes": {
"content": "I2Nsb3VkLWNvbmZpZwpydW5jbWQ6CiAtIFsgdG91Y2gsICAvaG9tZS91YnVudHUvdGVzdCBd",
},
})
# 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.UserData.Update(ctx, "ud_Av9BVDavORm1W", &operations.PatchUserDataUserDataRequestBody{
Data: operations.PatchUserDataUserDataData{
ID: "ud_Av9BVDavORm1W",
Type: operations.PatchUserDataUserDataTypeUserData,
Attributes: &operations.PatchUserDataUserDataAttributes{
Content: latitudeshgosdk.Pointer("I2Nsb3VkLWNvbmZpZwpydW5jbWQ6CiAtIFsgdG91Y2gsICAvaG9tZS91YnVudHUvdGVzdCBd"),
},
},
})
if err != nil {
log.Fatal(err)
}
if res.UserDataObject != 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.userData.update({
userDataId: "<id>",
});
console.log(result);
}
run();curl --request PATCH \
--url https://api.latitude.sh/user_data/{user_data_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"id": "<string>",
"type": "user_data",
"attributes": {
"description": "<string>",
"content": "<string>"
}
}
}
'const options = {
method: 'PATCH',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
id: '<string>',
type: 'user_data',
attributes: {description: '<string>', content: '<string>'}
}
})
};
fetch('https://api.latitude.sh/user_data/{user_data_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/user_data/{user_data_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'data' => [
'id' => '<string>',
'type' => 'user_data',
'attributes' => [
'description' => '<string>',
'content' => '<string>'
]
]
]),
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.patch("https://api.latitude.sh/user_data/{user_data_id}")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"id\": \"<string>\",\n \"type\": \"user_data\",\n \"attributes\": {\n \"description\": \"<string>\",\n \"content\": \"<string>\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/user_data/{user_data_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"data\": {\n \"id\": \"<string>\",\n \"type\": \"user_data\",\n \"attributes\": {\n \"description\": \"<string>\",\n \"content\": \"<string>\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"type": "user_data",
"id": "<string>",
"attributes": {
"description": "<string>",
"content": "<string>",
"decoded_content": "<string>",
"project": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"billing_type": "<string>",
"provisioning_type": "<string>",
"billing_method": "<string>",
"bandwidth_alert": true,
"environment": "<string>",
"billing": {
"subscription_id": "<string>",
"type": "<string>",
"method": "<string>"
},
"stats": {
"databases": 123,
"ip_addresses": 123,
"prefixes": 123,
"servers": 123,
"storages": 123,
"virtual_machines": 123,
"vlans": 123
}
},
"created_at": "<string>",
"updated_at": "<string>"
}
},
"meta": {}
}Was this page helpful?
⌘I