curl --request POST \
--url https://api.example.com/api/v1/bots/{object_id}/output_image \
--header 'Content-Type: application/json' \
--data '
{
"type": "<string>",
"data": "<string>"
}
'curl --request POST \
--url https://api.example.com/api/v1/bots/{object_id}/output_image \
--header 'Content-Type: application/json' \
--data '
{
"type": "<string>",
"data": "<string>"
}
'Causes the bot to display an image through its video feed in the meeting.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/attendee-labs/attendee/llms.txt
Use this file to discover all available pages before exploring further.
Authorization header.
bot_xxxxxxxxxxx)image/png is supported.curl -X POST https://app.attendee.dev/api/v1/bots/bot_weIAju4OXNZkDTpZ/output_image \
-H "Authorization: Token YOUR_API_KEY_HERE" \
-H "Content-Type: application/json" \
-d '{
"type": "image/png",
"data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z8BQDwAEhQGAhKmMIQAAAABJRU5ErkJggg=="
}'
{
"status": "success"
}