> ## Documentation Index
> Fetch the complete documentation index at: https://developer.sakari.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get meeting event cover



## OpenAPI

````yaml externals-reference/generated.yaml get /v1/meetingevents/{slug}/cover
openapi: 3.1.0
info:
  description: >
    For more information about Sakari, visit
    [https://sakari.io](https://sakari.io).
  version: 1.0.0
  title: Sakari
  termsOfService: https://sakari.io/terms-service.html
  contact:
    email: help@sakari.io
servers:
  - description: Sakari Externals API
    url: https://external.sakari.io
security: []
tags:
  - name: meetings
    description: Book, reschedule or cancel meetings
paths:
  /v1/meetingevents/{slug}/cover:
    get:
      tags:
        - externals.meetingevents
      summary: Get meeting event cover
      operationId: externals.meetings.cover
      parameters:
        - $ref: '#/components/parameters/slug'
      responses:
        '200':
          description: successful operation
          content:
            image/*:
              schema:
                type: string
                format: binary
        4XX:
          $ref: '#/components/responses/4XX'
        5XX:
          $ref: '#/components/responses/5XX'
components:
  parameters:
    slug:
      name: slug
      in: path
      required: true
      description: The slug of the meeting event
      schema:
        type: string
  responses:
    4XX:
      description: invalid request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    5XX:
      description: invalid request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  schemas:
    ErrorResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            error:
              $ref: '#/components/schemas/Error'
      required:
        - error
    BasicResponse:
      type: object
      properties:
        success:
          type: boolean
      required:
        - success
    Error:
      type: object
      properties:
        code:
          type: string
          example: CONT-010
        description:
          type: string
          example: Contact has requested no further communication
      required:
        - code
        - description

````