Skip to content
Get started

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.

ParametersExpand Collapse
chatbot: str

Chatbot identifier to verify

email: str

User account email to verify

use_cache: Optional[bool]
ReturnsExpand Collapse
object
Verify Chatbot
from overmind_lab import OvermindLab

client = OvermindLab()
response = client.v1.policies.verify_chatbot(
    chatbot="chatbot",
    email="email",
)
print(response)
{}
Returns Examples
{}