MultiPartUploadUrls (Object)
Description
No description
Fields
| Name | Description | 
|---|---|
| abortUrl - String! | The URL to abort the multi-part upload. Use this to cancel the upload if needed. | 
| mediaDownloadUrl - String! | The URL to download the media. | 
| mediaId - String! | The ID of the media. | 
| mediaUrl - String! | The URL to access the media. | 
| partUrls - [PartUrl!]! | The URLs to upload the parts of the media. The URLs are signed and will expire after 2 hours. | 
| urls - MediaUrls | The URLs to access the uploaded images at different sizes. Null if the media is not an image. | 
type MultiPartUploadUrls {
  abortUrl: String!
  mediaDownloadUrl: String!
  mediaId: String!
  mediaUrl: String!
  partUrls: [PartUrl!]!
  urls: MediaUrls
}