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

200
application/json

Successful Response

The response is of type OrganisationSummary · object[].