curl --request GET \
--url https://api.mentionlab.io/api/organisationsimport requests
url = "https://api.mentionlab.io/api/organisations"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.mentionlab.io/api/organisations', 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.mentionlab.io/api/organisations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.mentionlab.io/api/organisations"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.mentionlab.io/api/organisations")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mentionlab.io/api/organisations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"id": "01234567-89ab-cdef-0123-456789abcdef",
"name": "My Company",
"isDirectMember": true,
"status": "active",
"isSuperOrg": false,
"features": [
"chat-latest"
],
"slug": "my-organisation",
"config": {
"logoUrlDark": "https://example.com/logo-dark.svg",
"logoUrlLight": "https://example.com/logo-light.svg"
},
"role": "org_admin",
"parentOrganisationId": "01234567-89ab-cdef-0123-456789abcdef",
"billingMode": "stripe_self_serve"
}
]{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}Get organisations for the current user
Lists every organisation the current user can access, directly as a member or indirectly through membership of one of its projects.
curl --request GET \
--url https://api.mentionlab.io/api/organisationsimport requests
url = "https://api.mentionlab.io/api/organisations"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.mentionlab.io/api/organisations', 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.mentionlab.io/api/organisations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.mentionlab.io/api/organisations"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.mentionlab.io/api/organisations")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mentionlab.io/api/organisations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"id": "01234567-89ab-cdef-0123-456789abcdef",
"name": "My Company",
"isDirectMember": true,
"status": "active",
"isSuperOrg": false,
"features": [
"chat-latest"
],
"slug": "my-organisation",
"config": {
"logoUrlDark": "https://example.com/logo-dark.svg",
"logoUrlLight": "https://example.com/logo-light.svg"
},
"role": "org_admin",
"parentOrganisationId": "01234567-89ab-cdef-0123-456789abcdef",
"billingMode": "stripe_self_serve"
}
]{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}Response
Unique identifier for the organisation
"01234567-89ab-cdef-0123-456789abcdef"
Name of the organisation
"My Company"
Whether the user is a direct member of the organisation
true
Account status (active / hard_suspended / frozen)
active, hard_suspended, frozen "active"
True iff this org has at least one child sub-org (i.e. is a super-org)
false
Client-visible entitlements granted to the org (e.g. model-gating keys). Empty when none.
["chat-latest"]
Slug of the organisation
"my-organisation"
Organisation configuration details
Show child attributes
Show child attributes
Role of the user in the organisation (if direct member)
org_admin, org_editor, org_viewer, super_org_admin, super_viewer "org_admin"
Parent organisation id when this org is a sub-org. Absent for root orgs.
"01234567-89ab-cdef-0123-456789abcdef"
Billing mode for the org. Absent on sub-orgs (inherited from parent).
stripe_self_serve, stripe_partner, partner_invoice