Get organisation logo
import requests
url = "https://platform.ankra.app/org/organisation/{organisation_id}/logo"
headers = {"cookie": "ankra_session="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'ankra_session='}};
fetch('https://platform.ankra.app/org/organisation/{organisation_id}/logo', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://platform.ankra.app/org/organisation/{organisation_id}/logo \
--cookie ankra_session="<string>"{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Organisation
Get organisation logo
GET
/
org
/
organisation
/
{organisation_id}
/
logo
Get organisation logo
import requests
url = "https://platform.ankra.app/org/organisation/{organisation_id}/logo"
headers = {"cookie": "ankra_session="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'ankra_session='}};
fetch('https://platform.ankra.app/org/organisation/{organisation_id}/logo', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://platform.ankra.app/org/organisation/{organisation_id}/logo \
--cookie ankra_session="<string>"{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}