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.api_keys.update_api_key(api_key_id="tok_lpbV0DgRq4AWz", data={
"id": "tok_lpbV0DgRq4AWz",
"type": latitudesh_python_sdk.UpdateAPIKeyType.API_KEYS,
"attributes": {
"name": "Updated Name",
},
})
# Handle response
print(res)package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"github.com/latitudesh/latitudesh-go-sdk/models/components"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.APIKeys.UpdateAPIKey(ctx, "tok_lpbV0DgRq4AWz", components.UpdateAPIKey{
Data: &components.UpdateAPIKeyData{
ID: latitudeshgosdk.Pointer("tok_lpbV0DgRq4AWz"),
Type: components.UpdateAPIKeyTypeAPIKeys,
Attributes: &components.UpdateAPIKeyAttributes{
Name: latitudeshgosdk.Pointer("Updated Name"),
},
},
})
if err != nil {
log.Fatal(err)
}
if res.Object != 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.apiKeys.updateApiKey({
apiKeyId: "tok_lpbV0DgRq4AWz",
updateApiKey: {
data: {
id: "tok_lpbV0DgRq4AWz",
type: "api_keys",
attributes: {
name: "Updated Name",
},
},
},
});
console.log(result);
}
run();curl --request PATCH \
--url https://api.latitude.sh/auth/api_keys/{api_key_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"id": "tok_lpbV0DgRq4AWz",
"type": "api_keys",
"attributes": {
"name": "Updated Name"
}
}
}
'const options = {
method: 'PATCH',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {id: 'tok_lpbV0DgRq4AWz', type: 'api_keys', attributes: {name: 'Updated Name'}}
})
};
fetch('https://api.latitude.sh/auth/api_keys/{api_key_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/auth/api_keys/{api_key_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' => 'tok_lpbV0DgRq4AWz',
'type' => 'api_keys',
'attributes' => [
'name' => 'Updated Name'
]
]
]),
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/auth/api_keys/{api_key_id}")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"id\": \"tok_lpbV0DgRq4AWz\",\n \"type\": \"api_keys\",\n \"attributes\": {\n \"name\": \"Updated Name\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/auth/api_keys/{api_key_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\": \"tok_lpbV0DgRq4AWz\",\n \"type\": \"api_keys\",\n \"attributes\": {\n \"name\": \"Updated Name\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "tok_lpbV0DgRq4AWz",
"type": "api_keys",
"attributes": {
"name": "Updated Name",
"token_last_slice": "c10e6",
"api_version": "2023-06-01",
"read_only": false,
"allowed_ips": null,
"created_at": "2026-01-14T15:56:30+00:00",
"updated_at": "2026-01-14T15:56:30+00:00",
"last_used_at": null,
"user": {
"id": "user_YLMV5L9oYRFoe4Jo4l2PCGKr8bBa",
"email": "jaime@ullrich.example"
}
}
},
"meta": {}
}API keys
Update API key settings
Update API Key settings (name, read_only, allowed_ips) without rotating the token. Use PUT to rotate the token.
PATCH
/
auth
/
api_keys
/
{api_key_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.api_keys.update_api_key(api_key_id="tok_lpbV0DgRq4AWz", data={
"id": "tok_lpbV0DgRq4AWz",
"type": latitudesh_python_sdk.UpdateAPIKeyType.API_KEYS,
"attributes": {
"name": "Updated Name",
},
})
# Handle response
print(res)package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"github.com/latitudesh/latitudesh-go-sdk/models/components"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.APIKeys.UpdateAPIKey(ctx, "tok_lpbV0DgRq4AWz", components.UpdateAPIKey{
Data: &components.UpdateAPIKeyData{
ID: latitudeshgosdk.Pointer("tok_lpbV0DgRq4AWz"),
Type: components.UpdateAPIKeyTypeAPIKeys,
Attributes: &components.UpdateAPIKeyAttributes{
Name: latitudeshgosdk.Pointer("Updated Name"),
},
},
})
if err != nil {
log.Fatal(err)
}
if res.Object != 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.apiKeys.updateApiKey({
apiKeyId: "tok_lpbV0DgRq4AWz",
updateApiKey: {
data: {
id: "tok_lpbV0DgRq4AWz",
type: "api_keys",
attributes: {
name: "Updated Name",
},
},
},
});
console.log(result);
}
run();curl --request PATCH \
--url https://api.latitude.sh/auth/api_keys/{api_key_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"id": "tok_lpbV0DgRq4AWz",
"type": "api_keys",
"attributes": {
"name": "Updated Name"
}
}
}
'const options = {
method: 'PATCH',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {id: 'tok_lpbV0DgRq4AWz', type: 'api_keys', attributes: {name: 'Updated Name'}}
})
};
fetch('https://api.latitude.sh/auth/api_keys/{api_key_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/auth/api_keys/{api_key_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' => 'tok_lpbV0DgRq4AWz',
'type' => 'api_keys',
'attributes' => [
'name' => 'Updated Name'
]
]
]),
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/auth/api_keys/{api_key_id}")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"id\": \"tok_lpbV0DgRq4AWz\",\n \"type\": \"api_keys\",\n \"attributes\": {\n \"name\": \"Updated Name\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/auth/api_keys/{api_key_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\": \"tok_lpbV0DgRq4AWz\",\n \"type\": \"api_keys\",\n \"attributes\": {\n \"name\": \"Updated Name\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "tok_lpbV0DgRq4AWz",
"type": "api_keys",
"attributes": {
"name": "Updated Name",
"token_last_slice": "c10e6",
"api_version": "2023-06-01",
"read_only": false,
"allowed_ips": null,
"created_at": "2026-01-14T15:56:30+00:00",
"updated_at": "2026-01-14T15:56:30+00:00",
"last_used_at": null,
"user": {
"id": "user_YLMV5L9oYRFoe4Jo4l2PCGKr8bBa",
"email": "jaime@ullrich.example"
}
}
},
"meta": {}
}Was this page helpful?
⌘I