Python
import requests url = "https://api.mem0.ai/api/v1/orgs/organizations/{org_id}/members/" payload = {"email": "<string>"} headers = { "Authorization": "<api-key>", "Content-Type": "application/json" } response = requests.request("DELETE", url, json=payload, headers=headers) print(response.text)
{ "message": "User removed from organization." }
API key authentication. Prefix your Mem0 API key with 'Token '. Example: 'Token your_api_key'
Unique identifier of the organization
Member removed successfully
The response is of type object.
object
Was this page helpful?