POST
/
api
/
uploadaudiofile
/
{uuid}
curl --request POST \
  --url https://upload.fineshare.com/api/uploadaudiofile/{uuid} \
  --header 'Authorization: <authorization>' \
  --header 'Changer-Type: <changer-type>' \
  --header 'Content-Type: multipart/form-data'
{
  "message": "Audio file uploaded successfully.",
  "uuid": "123e4567-e89b-12d3-a456-426614174000"
}

Headers

Authorization
string
required

Bearer token for authorization.

Changer-Type
string
required

The type value returned in the step 1.

Path Parameters

uuid
string
required

The task_id returned in the step 1.

Body

multipart/form-data
audioFile
file
required

The audio file to upload.

Response

200
application/json
Audio file successfully uploaded.
message
string
Example:

"Audio file uploaded successfully."

uuid
string
Example:

"123e4567-e89b-12d3-a456-426614174000"