curl --request GET \
--url http://localhost:8000/bot-orchestration/{bot_name}/status \
--header 'Authorization: Basic <encoded-value>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Get the status of a specific bot.
Args: bot_name: Name of the bot to get status for bots_manager: Bot orchestrator service dependency
Returns: Dictionary with bot status information
Raises: HTTPException: 404 if bot not found
curl --request GET \
--url http://localhost:8000/bot-orchestration/{bot_name}/status \
--header 'Authorization: Basic <encoded-value>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Was this page helpful?