delete_organization_members
delete_organization_members(organization_id, member_emails)
Parameters
Example
import os
from dotenv import load_dotenv
from imerit_ango.sdk import SDK
load_dotenv('variables.env')
api_key = os.getenv('API_KEY')
organization_id = os.getenv('ORGANIZATION_ID')
ango_sdk = SDK(api_key)
ango_sdk.delete_organization_members(
organization_id=organization_id,
member_emails=["[email protected]", "[email protected]"]
)curl -X DELETE "https://imeritapi.ango.ai/v2/organization/$ORGANIZATION_ID/users" \
-H "Content-Type: application/json" \
-H "apikey: $ANGO_API_KEY" \
-d '{
"users": ["[email protected]", "[email protected]"]
}'Last updated