List group shares
curl --request GET \
--url https://app.base44.com/api/apps/{app_id}/group-shares \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.base44.com/api/apps/{app_id}/group-shares"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.base44.com/api/apps/{app_id}/group-shares', 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.base44.com/api/apps/{app_id}/group-shares",
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.base44.com/api/apps/{app_id}/group-shares"
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.base44.com/api/apps/{app_id}/group-shares")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.base44.com/api/apps/{app_id}/group-shares")
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{
"shares": [
{
"created_by": "jane@acme.com",
"created_date": "2026-09-14T09:21:37.512000",
"group_id": "68c9a0f1d2e4b5001f3a7c90",
"group_name": "Sales team",
"group_source": "custom",
"id": "68d1c2e4a9b7f3001e5c8a41",
"member_count": 12,
"role": "user",
"unresolved_count": 0
}
]
}Users
List group shares
This API is in beta. Endpoints, fields, and behavior may still change, so avoid depending on it in production.
Returns the workspace groups the app is shared with.
Every member of a shared group can use the app. A member’s role in the app is the highest of the role you gave them directly and the roles of all the groups they’re in that the app is shared with. Change a group’s role with Update group share, or stop sharing with Remove group share.
The response lists every share at once, with no paging. You need editor access to the app, and an editor or admin role in the app’s workspace.
This endpoint accepts a personal API key belonging to a user with editor access to the app. A read-only key is refused, and workspace API keys are not accepted.
GET
/
api
/
apps
/
{app_id}
/
group-shares
List group shares
curl --request GET \
--url https://app.base44.com/api/apps/{app_id}/group-shares \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.base44.com/api/apps/{app_id}/group-shares"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.base44.com/api/apps/{app_id}/group-shares', 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.base44.com/api/apps/{app_id}/group-shares",
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.base44.com/api/apps/{app_id}/group-shares"
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.base44.com/api/apps/{app_id}/group-shares")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.base44.com/api/apps/{app_id}/group-shares")
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{
"shares": [
{
"created_by": "jane@acme.com",
"created_date": "2026-09-14T09:21:37.512000",
"group_id": "68c9a0f1d2e4b5001f3a7c90",
"group_name": "Sales team",
"group_source": "custom",
"id": "68d1c2e4a9b7f3001e5c8a41",
"member_count": 12,
"role": "user",
"unresolved_count": 0
}
]
}Authorizations
Personal access token, sent as Authorization: Bearer <token>.
Path Parameters
ID of the app.
Response
The app's group shares.
The app's group shares.
Show child attributes
Show child attributes
Example:
[
{
"created_by": "jane@acme.com",
"created_date": "2026-09-14T09:21:37.512000",
"group_id": "68c9a0f1d2e4b5001f3a7c90",
"group_name": "Sales team",
"group_source": "custom",
"id": "68d1c2e4a9b7f3001e5c8a41",
"member_count": 12,
"role": "user",
"unresolved_count": 0
}
]
Was this page helpful?