Delete organisation logo
import requests
url = "https://platform.ankra.app/org/organisation/{organisation_id}/logo"
headers = {"cookie": "ankra_session="}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', 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 DELETE \
--url https://platform.ankra.app/org/organisation/{organisation_id}/logo \
--cookie ankra_session={
"success": true
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Organisation
Delete organisation logo
DELETE
/
org
/
organisation
/
{organisation_id}
/
logo
Delete organisation logo
import requests
url = "https://platform.ankra.app/org/organisation/{organisation_id}/logo"
headers = {"cookie": "ankra_session="}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', 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 DELETE \
--url https://platform.ankra.app/org/organisation/{organisation_id}/logo \
--cookie ankra_session={
"success": true
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}