Contendar Help

Get video url

Get a download ready URL for a video testimonial.

GET /testimonials/submissions/{testimonialSubmissionId}/video-url

Use this when you want to save the video file. The URL is signed and set to download as an attachment. It expires after a short time, so fetch it just before you download, not far in advance.

Authentication

Send your API key as a bearer token. See Authentication .

Path parameters

ParameterTypeNotes
testimonialSubmissionIdUUIDThe ID of the submission.

Query parameters

ParameterTypeNotes
projectIdUUIDRequired. The project the submission belongs to.

Response

{
  "videoUrl": "https://storage.googleapis.com/contendar/..."
}
FieldTypeNotes
videoUrlstring or nullThe download URL. null if the submission has no video.

Example

curl "https://app.contendar.com/api/v1/testimonials/submissions/b1d0c3a2-6f4e-4b8a-9c1d-2e3f4a5b6c7d/video-url?projectId=YOUR_PROJECT_ID" \
  -H "Authorization: Bearer ck_your_key_here"

Related pages

Was this helpful?