Voices

Edit Voice

Edit voice with the given id.

POST
/v1/voices/{voice_id}/edit

Authorization

papla-api-key<token>

Api key, that can be generated from the app dashboard

In: header

Request Body

application/jsonRequired
nameName

New name for the existing voice

descriptionDescription

New description for the existing voice

labelsLabels

New labels for the existing voice

Path Parameters

voice_idRequiredVoice Id

Id of the voice to edit

Format: "uuid"
curl -X POST "https://api.papla.media/v1/voices/6ce54263-cff6-457d-a72d-1387d0f28f6c/edit" \
    -H "papla-api-key: <token>" \
    -H "Content-Type: application/json" \
    -d '{
      "name": "New Name",
      "description": "new description",
      "labels": ["new label"]
    }'

Successful Response

{
  "voice_id": "2235c634-e4db-4ad6-aa15-066fb69b1c8f",
  "name": "string",
  "category": "premade",
  "description": "string",
  "created_at": "2019-08-24T14:15:22Z",
  "edited_at": "2019-08-24T14:15:22Z",
  "labels": [
    "string"
  ],
  "preview_url": "string"
}