List organisations
import requests
url = "https://platform.ankra.app/api/v1/org/organisation"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://platform.ankra.app/api/v1/org/organisation', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://platform.ankra.app/api/v1/org/organisation \
--header 'Authorization: Bearer <token>'[
{
"organisation_id": "<string>",
"name": "<string>",
"role": "member",
"slug": "<string>",
"status": "<string>",
"user_current": false
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Organisation API
List organisations
GET
/
api
/
v1
/
org
/
organisation
List organisations
import requests
url = "https://platform.ankra.app/api/v1/org/organisation"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://platform.ankra.app/api/v1/org/organisation', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://platform.ankra.app/api/v1/org/organisation \
--header 'Authorization: Bearer <token>'[
{
"organisation_id": "<string>",
"name": "<string>",
"role": "member",
"slug": "<string>",
"status": "<string>",
"user_current": false
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.