Skip to main content
The UploadUrlResponse type is returned by the createUploadUrl mutation. It contains the pre-signed URL for uploading files and metadata about the upload session.
upload_url
String
The pre-signed URL to upload your file to. Use an HTTP PUT request with the file content as the body and the appropriate Content-Type header.
meeting_id
String
The unique identifier for the meeting. Use this ID when calling confirmUpload after uploading the file.
expires_at
String
ISO 8601 timestamp indicating when the upload URL expires. URLs are valid for 1 hour from creation.

Example Response

{
  "upload_url": "https://storage.googleapis.com/bucket/path?signature=...",
  "meeting_id": "abc123def456",
  "expires_at": "2024-01-15T12:00:00.000Z"
}

Additional Resources