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.teams_members.add(data={
"type": latitudesh_python_sdk.PostTeamMembersTeamsMembersType.MEMBERSHIPS,
"attributes": {
"first_name": "Maricela",
"last_name": "Torphy",
"email": "maritza_schneider@mcglynn.test",
"role": latitudesh_python_sdk.PostTeamMembersTeamsMembersRole.COLLABORATOR,
},
})
# 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.TeamMembers.PostTeamMembers(ctx, operations.PostTeamMembersTeamMembersRequestBody{
Data: operations.PostTeamMembersTeamMembersData{
Type: operations.PostTeamMembersTeamMembersTypeMemberships,
Attributes: &operations.PostTeamMembersTeamMembersAttributes{
FirstName: latitudeshgosdk.Pointer("Maricela"),
LastName: latitudeshgosdk.Pointer("Torphy"),
Email: "maritza_schneider@mcglynn.test",
Role: operations.PostTeamMembersRoleCollaborator,
},
},
})
if err != nil {
log.Fatal(err)
}
if res.Membership != 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.teamMembers.postTeamMembers({
data: {
type: "memberships",
attributes: {
firstName: "Maricela",
lastName: "Torphy",
email: "maritza_schneider@mcglynn.test",
role: "collaborator",
},
},
});
console.log(result);
}
run();curl --request POST \
--url https://api.latitude.sh/team/members \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"type": "teams",
"attributes": {
"first_name": "Maricela",
"last_name": "Torphy",
"email": "maritza_schneider@mcglynn.test",
"role": "collaborator"
}
}
}
'const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
type: 'teams',
attributes: {
first_name: 'Maricela',
last_name: 'Torphy',
email: 'maritza_schneider@mcglynn.test',
role: 'collaborator'
}
}
})
};
fetch('https://api.latitude.sh/team/members', 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/team/members",
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' => 'teams',
'attributes' => [
'first_name' => 'Maricela',
'last_name' => 'Torphy',
'email' => 'maritza_schneider@mcglynn.test',
'role' => 'collaborator'
]
]
]),
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/team/members")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"type\": \"teams\",\n \"attributes\": {\n \"first_name\": \"Maricela\",\n \"last_name\": \"Torphy\",\n \"email\": \"maritza_schneider@mcglynn.test\",\n \"role\": \"collaborator\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/team/members")
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\": \"teams\",\n \"attributes\": {\n \"first_name\": \"Maricela\",\n \"last_name\": \"Torphy\",\n \"email\": \"maritza_schneider@mcglynn.test\",\n \"role\": \"collaborator\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "user_pbV0Dgykd4AWz",
"type": "memberships",
"attributes": {
"first_name": "Maricela",
"last_name": "Torphy",
"email": "maritza_schneider@mcglynn.test",
"role": "collaborator",
"mfa_enabled": false,
"created_at": "2026-01-14T15:56:36+00:00",
"updated_at": "2026-01-14T15:56:36+00:00"
}
},
"meta": {}
}Team members
Create member
POST
/
team
/
members
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.teams_members.add(data={
"type": latitudesh_python_sdk.PostTeamMembersTeamsMembersType.MEMBERSHIPS,
"attributes": {
"first_name": "Maricela",
"last_name": "Torphy",
"email": "maritza_schneider@mcglynn.test",
"role": latitudesh_python_sdk.PostTeamMembersTeamsMembersRole.COLLABORATOR,
},
})
# 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.TeamMembers.PostTeamMembers(ctx, operations.PostTeamMembersTeamMembersRequestBody{
Data: operations.PostTeamMembersTeamMembersData{
Type: operations.PostTeamMembersTeamMembersTypeMemberships,
Attributes: &operations.PostTeamMembersTeamMembersAttributes{
FirstName: latitudeshgosdk.Pointer("Maricela"),
LastName: latitudeshgosdk.Pointer("Torphy"),
Email: "maritza_schneider@mcglynn.test",
Role: operations.PostTeamMembersRoleCollaborator,
},
},
})
if err != nil {
log.Fatal(err)
}
if res.Membership != 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.teamMembers.postTeamMembers({
data: {
type: "memberships",
attributes: {
firstName: "Maricela",
lastName: "Torphy",
email: "maritza_schneider@mcglynn.test",
role: "collaborator",
},
},
});
console.log(result);
}
run();curl --request POST \
--url https://api.latitude.sh/team/members \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"type": "teams",
"attributes": {
"first_name": "Maricela",
"last_name": "Torphy",
"email": "maritza_schneider@mcglynn.test",
"role": "collaborator"
}
}
}
'const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
type: 'teams',
attributes: {
first_name: 'Maricela',
last_name: 'Torphy',
email: 'maritza_schneider@mcglynn.test',
role: 'collaborator'
}
}
})
};
fetch('https://api.latitude.sh/team/members', 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/team/members",
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' => 'teams',
'attributes' => [
'first_name' => 'Maricela',
'last_name' => 'Torphy',
'email' => 'maritza_schneider@mcglynn.test',
'role' => 'collaborator'
]
]
]),
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/team/members")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"type\": \"teams\",\n \"attributes\": {\n \"first_name\": \"Maricela\",\n \"last_name\": \"Torphy\",\n \"email\": \"maritza_schneider@mcglynn.test\",\n \"role\": \"collaborator\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/team/members")
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\": \"teams\",\n \"attributes\": {\n \"first_name\": \"Maricela\",\n \"last_name\": \"Torphy\",\n \"email\": \"maritza_schneider@mcglynn.test\",\n \"role\": \"collaborator\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "user_pbV0Dgykd4AWz",
"type": "memberships",
"attributes": {
"first_name": "Maricela",
"last_name": "Torphy",
"email": "maritza_schneider@mcglynn.test",
"role": "collaborator",
"mfa_enabled": false,
"created_at": "2026-01-14T15:56:36+00:00",
"updated_at": "2026-01-14T15:56:36+00:00"
}
},
"meta": {}
}Was this page helpful?
⌘I