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

# Voice Persona 完成

> 上传验证录音并创建声音角色

<Info>
  这是**免费** Init + Complete Voice Persona 的**第二阶段**。产物与收费的 [Clone Voice](/zh/api-reference/suno/voices) 相同。须先完成[第一阶段：Init](/zh/api-reference/suno/voicePersonaInit)，等到 `awaiting`。详见[完整工作流程指南](/zh/api-reference/suno/voicePersona)。
</Info>

使用 init 返回的**相同 `taskId`**。调用 complete 后，继续轮询同一个 taskId，直到状态变为 `success`。

<Warning>
  您必须在任务达到 `awaiting` 状态后的 **30 秒**内调用此端点。超过此超时时间将导致任务失败，错误码为 `VP_USER_TIMEOUT`。
</Warning>

<Tip>
  不需要中间数据（`vox_audio_id`、`phrase_id` 等）— 系统会自动从 init 阶段读取这些数据。只需传入 `taskId`、`verification_audio_url`、`name` 和可选字段即可。
</Tip>


## OpenAPI

````yaml POST /suno/v2/voicePersona/complete
openapi: 3.0.0
info:
  title: Suno AI
  description: API documentation for Suno AI
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.mountsea.ai
    description: API Gateway
security: []
tags:
  - name: suno
    description: ''
  - name: suno/studio
    description: Studio Song Editor（与 audio/crop|fade|reverse 独立）
paths:
  /suno/v2/voicePersona/complete:
    post:
      tags:
        - suno
      summary: complete voice persona
      description: >-
        Submit verification recording to complete the voice persona creation.
        Uses the same taskId returned by init.
      operationId: ApiPublicController_voicePersonaComplete
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VoicePersonaCompleteDto'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskIdDto'
      security:
        - bearerAuth: []
components:
  schemas:
    VoicePersonaCompleteDto:
      type: object
      properties:
        taskId:
          type: string
          format: uuid
          description: init 返回的 taskId（同一个任务）
          example: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
        verification_audio_url:
          type: string
          format: uri
          description: 用户朗读验证短语后的录音 URL（WAV/MP3）
          example: https://example.com/verification.wav
        name:
          type: string
          description: Persona 名称
          example: My Voice
        description:
          type: string
          description: Persona 描述
        is_public:
          type: boolean
          description: 是否公开，默认 false
          example: false
        image_s3_id:
          type: string
          description: 封面图片（base64 或 null 自动生成）
      required:
        - taskId
        - verification_audio_url
        - name
    TaskIdDto:
      type: object
      properties:
        taskId:
          type: string
          description: task id. Use this id to query task status.
          example: 15c257ff-43f7-4678-bd41-202ad6b8488b
      required:
        - taskId
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````