curl --request POST \
--url https://platform.versori.com/api/v2/o/{organisation_id}/automations/{automation_id}/recordings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"fileName": "<string>",
"contentType": "<string>",
"expirySeconds": 123,
"hasVoiceover": false
}
'{
"id": "<string>",
"url": "<string>"
}CreateRecording creates a recording for an automation. The recording file is uploaded to the GCP bucket and the transcription is requested.
curl --request POST \
--url https://platform.versori.com/api/v2/o/{organisation_id}/automations/{automation_id}/recordings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"fileName": "<string>",
"contentType": "<string>",
"expirySeconds": 123,
"hasVoiceover": false
}
'{
"id": "<string>",
"url": "<string>"
}Bearer token authentication used by the Versori Platform. External consumers must provide an API key, however internal consumers must provide a JWT id_token issued by our IdP.