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

# Create a voice review for a woku (v1 alias of POST /wokus/create-voicemail)



## OpenAPI

````yaml /openapi-v1.json post /v1/wokus/{wokuId}/voicemails
openapi: 3.0.0
info:
  title: Woku Client API v1
  description: >-
    Public REST API for programmatic management of woku Voice-of-Customer
    programs: trackers, VoC instruments (NPS, woku, CES, CSAT), action plans,
    support tickets, multi-channel sending and response capture. Requests are
    company-scoped by the API key; never send a company id.
  version: 1.0.0
  contact:
    name: Woku
    url: https://woku.app
    email: team@woku.app
servers:
  - url: https://clientapi.woku.app
    description: Production
security: []
tags: []
paths:
  /v1/wokus/{wokuId}/voicemails:
    post:
      tags:
        - v1 - wokus
      summary: >-
        Create a voice review for a woku (v1 alias of POST
        /wokus/create-voicemail)
      operationId: V1WokusController_createVoicemail
      parameters:
        - name: wokuId
          required: true
          in: path
          schema:
            type: string
            format: ObjectId
        - name: authorization
          required: true
          in: header
          schema:
            type: string
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/V1CreateVoicemailBodyDto'
      responses:
        '201':
          description: ''
      security:
        - bearer: []
components:
  schemas:
    V1CreateVoicemailBodyDto:
      type: object
      properties:
        dispatchToken:
          type: string
          description: >-
            Opaque invitation or prepared journey-entry response token. Consumed
            after saving feedback; never stored on the review.
          maxLength: 64
        file:
          type: string
          description: Audio file for the voicemail
          format: binary
        qualification:
          type: string
          description: Star rating (1-5)
          enum:
            - '1'
            - '2'
            - '3'
            - '4'
            - '5'
          example: '5'
        language:
          type: string
          description: Spoken language used to improve audio transcription
          enum:
            - es
            - en
          example: es
        clientEmail:
          type: string
          description: Reviewer email
        clientPhone:
          type: string
          description: Reviewer phone
        anonymous:
          type: string
          description: Whether the review is anonymous
          enum:
            - 'true'
            - 'false'
        responseChannel:
          type: string
          description: >-
            Inbound response channel. Defaults to 'api'; a value provided here
            REPLACES 'api' (user-defined channel).
          example: my-crm
          maxLength: 48
      required:
        - file
        - qualification
        - language
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: API key
      type: http
      description: Company secret API key.

````