Team
Retrieve team
Returns the company’s team as one document: active and inactive members plus pending invitations, in the same order as the Settings team page. Deleted memberships and non-pending invitations are excluded. Finta support staff with a membership appear as ordinary members; there is no staff marker. Active members precede inactive members; no alphabetical ordering is promised. No filters or pagination. Empty collections are empty arrays. Requires API access Manage and Team & access View for the authenticated company. Missing or invalid public IDs are null; records are still returned, and this request does not backfill or modify team records.
GET
/
team
Retrieve team
curl --request GET \
--url https://app.finta.com/api/v1/team \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.finta.com/api/v1/team"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.finta.com/api/v1/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://app.finta.com/api/v1/team",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.finta.com/api/v1/team"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.finta.com/api/v1/team")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.finta.com/api/v1/team")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"object": "team",
"members": [
{
"id": "usr_a1b2c3d4e5f6g7",
"object": "member",
"email": "alex@example.com",
"name": "Alex Chen",
"state": "active",
"access_template": "admin",
"permissions": {
"dashboard": "manage",
"transactions": "manage",
"accounting_setup": "manage",
"reconciliation": "manage",
"invoices": "manage",
"reports": "manage",
"forecast": "manage",
"taxes": "manage",
"integrations": "manage",
"company": "manage",
"team_access": "manage",
"billing": "manage",
"ask_finta": "manage",
"api_access": "manage"
},
"created": 1751371200
}
],
"invitations": [
{
"id": "invite_h8i9j0k1l2m3n4",
"version": "2026-09-09T17:20:00.000000Z",
"object": "invitation",
"invited_by": "usr_a1b2c3d4e5f6g7",
"expires": 1791568800,
"email": "sam@example.com",
"name": "Sam Rivera",
"access_template": "read_only",
"permissions": {
"dashboard": "view",
"transactions": "view",
"accounting_setup": "view",
"reconciliation": "view",
"invoices": "view",
"reports": "view",
"forecast": "view",
"taxes": "view",
"integrations": "view",
"company": "view",
"team_access": "view",
"billing": "view",
"ask_finta": "view",
"api_access": "none"
},
"created": 1788976800
}
]
}Authorizations
API key prefixed with finta_
Was this page helpful?
⌘I
Retrieve team
curl --request GET \
--url https://app.finta.com/api/v1/team \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.finta.com/api/v1/team"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.finta.com/api/v1/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://app.finta.com/api/v1/team",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.finta.com/api/v1/team"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.finta.com/api/v1/team")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.finta.com/api/v1/team")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"object": "team",
"members": [
{
"id": "usr_a1b2c3d4e5f6g7",
"object": "member",
"email": "alex@example.com",
"name": "Alex Chen",
"state": "active",
"access_template": "admin",
"permissions": {
"dashboard": "manage",
"transactions": "manage",
"accounting_setup": "manage",
"reconciliation": "manage",
"invoices": "manage",
"reports": "manage",
"forecast": "manage",
"taxes": "manage",
"integrations": "manage",
"company": "manage",
"team_access": "manage",
"billing": "manage",
"ask_finta": "manage",
"api_access": "manage"
},
"created": 1751371200
}
],
"invitations": [
{
"id": "invite_h8i9j0k1l2m3n4",
"version": "2026-09-09T17:20:00.000000Z",
"object": "invitation",
"invited_by": "usr_a1b2c3d4e5f6g7",
"expires": 1791568800,
"email": "sam@example.com",
"name": "Sam Rivera",
"access_template": "read_only",
"permissions": {
"dashboard": "view",
"transactions": "view",
"accounting_setup": "view",
"reconciliation": "view",
"invoices": "view",
"reports": "view",
"forecast": "view",
"taxes": "view",
"integrations": "view",
"company": "view",
"team_access": "view",
"billing": "view",
"ask_finta": "view",
"api_access": "none"
},
"created": 1788976800
}
]
}