Get video url
Get a download ready URL for a video testimonial.
GET /testimonials/submissions/{testimonialSubmissionId}/video-urlUse 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
| Parameter | Type | Notes |
testimonialSubmissionId | UUID | The ID of the submission. |
Query parameters
| Parameter | Type | Notes |
projectId | UUID | Required. The project the submission belongs to. |
Response
{
"videoUrl": "https://storage.googleapis.com/contendar/..."
}| Field | Type | Notes |
videoUrl | string or null | The 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?