Get the details for a bot
Path Parameters
- Type: string
object _id requiredBot ID
Headers
- Type: string
Authorization requiredAPI key for authentication
- Type: string
Content - Type requiredShould always be application/json
Responses
- application/json
404 Bot not found
Request Example for get/api/v1/bots/{object_id}
curl https://app.attendee.dev/api/v1/bots/bot_xxxxxxxxxxx \
--header 'Authorization: Token YOUR_API_KEY_HERE' \
--header 'Content-Type: application/json'
{
"id": "bot_weIAju4OXNZkDTpZ",
"meeting_url": "https://zoom.us/j/123?pwd=456",
"state": "joining",
"events": [
{
"type": "join_requested",
"created_at": "2024-01-18T12:34:56Z"
}
],
"transcription_state": "not_started",
"recording_state": "not_started"
}