Verify Chatbot
v1.policies.verify_chatbot(PolicyVerifyChatbotParams**kwargs) -> object
POST/api/v1/policies/verify-chatbot
Verify if a chatbot and user email are allowed by the user's organisation policy. Returns 200 on success or 403 if not permitted.
Parameters
chatbot: str
Chatbot identifier to verify
email: str
User account email to verify
Returns
object
Verify Chatbot
from overmind_lab import OvermindLab
client = OvermindLab()
response = client.v1.policies.verify_chatbot(
chatbot="chatbot",
email="email",
)
print(response){}Returns Examples
{}