Output image

Causes the bot to output an image in the meeting.

Path Parameters
  • object_id
    Type: string
    required

    Bot ID

Headers
  • Authorization
    Type: string
    required

    API key for authentication

  • Content-Type
    Type: string
    required

    Should always be application/json

Body
required
application/json
  • data
    Type: string
    min length:  
    1
    required

    Base64 encoded image data.

  • type
    Type: string · TypeEnumenum
    required
    • image/png - PNG Image
    • image/jpeg - JPEG Image
    values
    • image/png
    • image/jpeg
Responses
  • 200

    Image request created successfully

  • 400

    Invalid input

  • 404

    Bot not found

Request Example for post/api/v1/bots/{object_id}/output_image
curl https://app.attendee.dev/api/v1/bots/bot_xxxxxxxxxxx/output_image \
  --request POST \
  --header 'Authorization: Token YOUR_API_KEY_HERE' \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "image/png",
  "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z8BQDwAEhQGAhKmMIQAAAABJRU5ErkJggg=="
}'
No Body