Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
Unique identifier for the external user. Used for user resolution:
Existing User: If a user with the same userUniqueIdentifier exists for the company, their record is used New User: If no matching user exists, an Integration user is automatically created with the provided userName and userUniqueIdentifier, associated with the company's Integration team
1
"user-123"
Name of the user who created the recording. Used when creating new Integration users if the userUniqueIdentifier doesn't exist.
1
"John Doe"
Presigned URL used to transcribe the audio/video file. If permanent, Replay will use this URL to allow the user to listen to audio playback when viewing their analysis. If temporary, Replay will only use this for audio transcription.
"https://storage.example.com/audio.mp3?signature=..."
Whether to store the audio file in Replay's GCS storage.
true: Downloads the file and stores it in GCS before processing
- File remains accessible for future playback
- Original presigned URL can expire after initial download
- Recommended for temporary presigned URLs
false: Sends the presigned URL directly to Deepgram without storing
- No file stored in Replay's infrastructure
- Presigned URL must remain valid for entire processing duration
- ⚠️ Audio playback depends on URL permanence (permanent URLs work, temporary URLs won't have playback)
true
Response
Recording accepted for processing. The API returns immediately with a 200 status code and processes the recording asynchronously in the background. You will receive webhook notifications when processing completes or fails (if webhook URL is configured).
Indicates the recording was accepted for processing
accepted
"accepted"