curl --request GET \
--url http://localhost:8000/bot-orchestration/bot-runs/{bot_run_id} \
--header 'Authorization: Basic <encoded-value>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Get a specific bot run by ID.
Args: bot_run_id: ID of the bot run db_manager: Database manager dependency
Returns: Bot run details
Raises: HTTPException: 404 if bot run not found
curl --request GET \
--url http://localhost:8000/bot-orchestration/bot-runs/{bot_run_id} \
--header 'Authorization: Basic <encoded-value>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Was this page helpful?