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

#  Read

> Read the slide-style artifact. After generation, `content.samples` is a list of objects `{index, type, url, qc}` where `type` is one of title | content | divider | closing, `url` is a signed image URL (re-signed on every read; never cache it), and `qc` is the automated vision check of the rendered sample: `{checked, passed, retried, problems[]}`. `content` also carries the five color roles (colors.primary / secondary / accent / background / text), `palette`, `font_family` and `style_notes`. `preview_urls.sample_urls` repeats the sample URLs as a flat list (legacy shape).



## OpenAPI

````yaml /openapi.yaml get /api/v1/presets/{preset_id}/slide-style
openapi: 3.1.0
info:
  title: Mahara Platform
  description: >
    AI Sales Training Course Generator, a Coursera-style platform.


    ## Authentication


    Every request must carry your API key as a Bearer token:


    `Authorization: Bearer sk_live_your_key_here`


    ## Getting an API key


    API keys are provisioned by our team. They are not self-service, so there is
    no signup page to apply on. To request access, email **sales@myustadia.com**
    and we will issue a key for your account.
  version: 1.0.0
servers: []
security: []
paths:
  /api/v1/presets/{preset_id}/slide-style:
    get:
      tags:
        - B2B Preset setup
      summary: ' Read'
      description: >-
        Read the slide-style artifact. After generation, `content.samples` is a
        list of objects `{index, type, url, qc}` where `type` is one of title |
        content | divider | closing, `url` is a signed image URL (re-signed on
        every read; never cache it), and `qc` is the automated vision check of
        the rendered sample: `{checked, passed, retried, problems[]}`. `content`
        also carries the five color roles (colors.primary / secondary / accent /
        background / text), `palette`, `font_family` and `style_notes`.
        `preview_urls.sample_urls` repeats the sample URLs as a flat list
        (legacy shape).
      operationId: _read_api_v1_presets__preset_id__slide_style_get
      parameters:
        - name: preset_id
          in: path
          required: true
          schema:
            type: string
            title: Preset Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    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

````