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

# Create a presentation integration token

> Create a temporary, scoped URL for embedding an existing Cloud presentation in an iframe.

[Read the iframe integration guide](/user-guide/managing-presentations/embed-presentation-preview).



## OpenAPI

````yaml /openapi/cloud.json post /api/v3/presentation/integrate
openapi: 3.1.0
info:
  title: Presenton Cloud API
  version: v0.9.3-beta
  description: Supported public API for managed Presenton Cloud integrations.
servers:
  - url: https://api.presenton.ai
    description: Presenton Cloud
security: []
tags:
  - name: Presentations
    description: Generate and manage presentations.
  - name: Files and media
    description: Upload source files and images.
  - name: Templates and design
    description: Select reusable presentation designs.
  - name: Async and webhooks
    description: Monitor background work and receive events.
paths:
  /api/v3/presentation/integrate:
    post:
      tags:
        - V3 Presentation
      summary: Create a presentation integration token
      description: >-
        Create a temporary, scoped URL for embedding an existing Cloud
        presentation in an iframe.


        [Read the iframe integration
        guide](/user-guide/managing-presentations/embed-presentation-preview).
      operationId: create_presentation_token_api_v3_presentation_integrate_post
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreatePresentationTokenRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreatePresentationTokenResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          $ref: '#/components/responses/ServerError'
      security:
        - BearerAuth: []
      externalDocs:
        description: Read the iframe integration guide
        url: /user-guide/managing-presentations/embed-presentation-preview
components:
  schemas:
    CreatePresentationTokenRequest:
      properties:
        presentation:
          type: string
          format: uuid
          title: Presentation
          description: Presentation id
        scopes:
          items:
            type: string
            enum:
              - presentation:read
              - presentation:edit
              - presentation:export
          type: array
          minItems: 1
          title: Scopes
        expires_at:
          type: string
          format: date-time
          title: Expires At
      type: object
      required:
        - presentation
        - scopes
      title: CreatePresentationTokenRequest
    CreatePresentationTokenResponse:
      properties:
        token:
          type: string
          title: Token
        frontend_url:
          type: string
          title: Frontend Url
        user:
          type: string
          format: uuid
          title: User
        presentation:
          type: string
          format: uuid
          title: Presentation
        scopes:
          items:
            type: string
            enum:
              - presentation:read
              - presentation:edit
              - presentation:export
          type: array
          title: Scopes
        version:
          type: string
          enum:
            - standard
            - smart
          title: Version
        expires_at:
          type: string
          format: date-time
          title: Expires At
      type: object
      required:
        - token
        - frontend_url
        - user
        - presentation
        - scopes
        - version
        - expires_at
      title: CreatePresentationTokenResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  responses:
    Unauthorized:
      description: Authentication is missing or invalid.
    ServerError:
      description: Presenton or one of its configured dependencies failed.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Presenton API token

````