HTTP

Upload files from a publicly accessible URL

Data origin

You can fetch files directly from a public URL pointing at the raw resource. This is particularly useful as you can leverage temporary access URLs generated by common cloud storage locations such as GCS or S3.

Configuration

API Endpoints

Create a new job   •    Set job data source

dataSource object:

KeyValueMandatory
dataSourceDescriptor"url"*
params@type"type.googleapis.com/bytenite.data_source.HttpDataSource"*
paramsurlThe HTTP(S) URL of the input file*

Example

{
  "dataSource": {  
      "dataSourceDescriptor": "url",  
      "params": {  
          "@type": "type.googleapis.com/bytenite.data_source.HttpDataSource",  
          "url": "https://example.com/my_video.mov"  
      }  
  }
}