POST
/
api
/
jobs
/
{jobId}
/
files
/
download-url
curl --request POST \
  --url http://voiceharbor.ai/api/jobs/{jobId}/files/download-url \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "fileName": "<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 download signed URL
fileName
string
required

Response

200
application/json
Signed URL generated successfully
signedUrl
string
required