POST
/
api
/
createaudiofilechanger
curl --request POST \
  --url https://voiceai.fineshare.com/api/createaudiofilechanger \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "voice": "leo",
  "from": "fv-file-changer",
  "operation": "FVC",
  "engine": "v5"
}'
{
  "message": "Task node created successfully.",
  "taskId": "task_id"
}

Headers

Authorization
string
required

Bearer token for authorization

Body

application/json
voice
string
required
Example:

"leo"

from
enum<string>
required
Available options:
fv-file-changer
Example:

"fv-file-changer"

operation
enum<string>
required
Available options:
FVC
Example:

"FVC"

engine
enum<string>
required
Available options:
v5,
v7
Example:

"v5"

Response

200
application/json
Task node successfully created.
message
string
Example:

"Task node created successfully."

taskId
string
Example:

"task_id"