POST
/
api
/
jobs
/
{jobId}
/
files
/
upload-url
curl --request POST \
  --url http://voiceharbor.ai/api/jobs/{jobId}/files/upload-url \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "fileName": "<string>",
  "fileType": "<string>"
}'
{
  "signedUrl": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

jobId
string
required

ID of the job

Body

application/json
File details for which to get the signed URL
fileName
string
required
fileType
string
required

Response

200
application/json
Signed URL generated successfully
signedUrl
string
required