cURL
curl --request POST \ --url https://api.siro.ai/v1/core/recordings/signed-urls \ --header 'Content-Type: application/json' \ --header 'x-siro-auth-token: <api-key>' \ --data ' { "fileSizeInBytes": 123, "fileType": "<string>" } '
{ "data": { "uploadUrl": "<string>", "downloadUrl": "<string>", "expiresAt": "2023-11-07T05:31:56Z" } }
Returns a signed uploadUrl and a downloadUrl. Upload your recording file via PUT to the uploadUrl. Then pass the downloadUrl as the file reference when creating the recording with metadata.
uploadUrl
downloadUrl
Custom authentication token for user-scoped endpoints
Size of the file in bytes
File type (limited to mp3, aac, wav)
Success
Show child attributes