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

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

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

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