Skip to main content
GET
/
api
/
v1
/
organisations
List Organisations Endpoint
import requests

url = "https://platform.ankra.app/api/v1/organisations"

response = requests.get(url)

print(response.json())
[
  {
    "organisation_id": "<string>",
    "name": "<string>",
    "user_current": false,
    "status": "<string>",
    "role": "member"
  }
]

Headers

authorization
string | null

Response

Successful Response

organisation_id
string<uuid4>
required
name
string | null
user_current
boolean
default:false
status
string | null
role
enum<string> | null
Available options:
member,
admin,
read-only
I