import requests
url = "https://platform.ankra.app/api/v1/organisations/invite"
payload = {
"organisation_id": "<string>",
"invitee_email": "jsmith@example.com",
"role": "member"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.json())