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.create(data={
"type": latitudesh_python_sdk.PostTeamTeamsType.TEAMS,
"attributes": {
"name": "Name",
"currency": latitudesh_python_sdk.PostTeamTeamsCurrency.USD,
"address": "Address",
},
})
# 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.Teams.Create(ctx, operations.PostTeamTeamsRequestBody{
Data: operations.PostTeamTeamsData{
Type: operations.PostTeamTeamsTypeTeams,
Attributes: &operations.PostTeamTeamsAttributes{
Name: "Name",
Currency: operations.PostTeamCurrencyUsd,
Address: latitudeshgosdk.Pointer("Address"),
},
},
})
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.teams.create({
data: {
type: "teams",
attributes: {
name: "Name",
currency: "USD",
address: "Address",
},
},
});
console.log(result);
}
run();curl --request POST \
--url https://api.latitude.sh/team \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"type": "teams",
"attributes": {
"name": "Name",
"address": "Address",
"currency": "USD"
}
}
}
'const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {type: 'teams', attributes: {name: 'Name', address: 'Address', currency: 'USD'}}
})
};
fetch('https://api.latitude.sh/team', 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",
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' => [
'name' => 'Name',
'address' => 'Address',
'currency' => 'USD'
]
]
]),
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")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"type\": \"teams\",\n \"attributes\": {\n \"name\": \"Name\",\n \"address\": \"Address\",\n \"currency\": \"USD\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/team")
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 \"name\": \"Name\",\n \"address\": \"Address\",\n \"currency\": \"USD\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "team_aEjv7ZKeWzCrjA5ANeMvImmKEoV",
"type": "teams",
"attributes": {
"name": "Name",
"slug": "name",
"address": "Address",
"currency": "USD",
"token": "token-for-team",
"enforce_mfa": false,
"customer_billing_id": "cus_hp2b02do",
"referred_code": null
}
},
"meta": {}
}Teams
Create team
POST
/
team
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.create(data={
"type": latitudesh_python_sdk.PostTeamTeamsType.TEAMS,
"attributes": {
"name": "Name",
"currency": latitudesh_python_sdk.PostTeamTeamsCurrency.USD,
"address": "Address",
},
})
# 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.Teams.Create(ctx, operations.PostTeamTeamsRequestBody{
Data: operations.PostTeamTeamsData{
Type: operations.PostTeamTeamsTypeTeams,
Attributes: &operations.PostTeamTeamsAttributes{
Name: "Name",
Currency: operations.PostTeamCurrencyUsd,
Address: latitudeshgosdk.Pointer("Address"),
},
},
})
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.teams.create({
data: {
type: "teams",
attributes: {
name: "Name",
currency: "USD",
address: "Address",
},
},
});
console.log(result);
}
run();curl --request POST \
--url https://api.latitude.sh/team \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"type": "teams",
"attributes": {
"name": "Name",
"address": "Address",
"currency": "USD"
}
}
}
'const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {type: 'teams', attributes: {name: 'Name', address: 'Address', currency: 'USD'}}
})
};
fetch('https://api.latitude.sh/team', 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",
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' => [
'name' => 'Name',
'address' => 'Address',
'currency' => 'USD'
]
]
]),
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")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"type\": \"teams\",\n \"attributes\": {\n \"name\": \"Name\",\n \"address\": \"Address\",\n \"currency\": \"USD\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/team")
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 \"name\": \"Name\",\n \"address\": \"Address\",\n \"currency\": \"USD\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "team_aEjv7ZKeWzCrjA5ANeMvImmKEoV",
"type": "teams",
"attributes": {
"name": "Name",
"slug": "name",
"address": "Address",
"currency": "USD",
"token": "token-for-team",
"enforce_mfa": false,
"customer_billing_id": "cus_hp2b02do",
"referred_code": null
}
},
"meta": {}
}Was this page helpful?
⌘I