FTP Server

Field Required Type Default Description
type Required String "ftp"
host Required String Hostname
user Optional String Authentication: username
password Optional String Authentication: password
filename Required String Full pathname for destination
passive Optional Boolean false Use PASSIVE mode
epsv Optional Boolean false Use Extended Passive mode

Example


curl -X POST
     -H "Content-type: application/json"
     http://render.impossible.io/v2/render/Project-ID -d '
{
    "movie": "Movie Name",
    "params": {
        Movie Parameters
    },
    "upload": {
        "extension": "mp4",
        "destination":  {
            "type": "ftp",
            "filename": "filename",
            "host": "Host name",
            "user": "FTP username",
            "password": "FTP password"
            "passive": false | true,
            "epsv": false | true
        }
    }
}

Terms of Use | © 2017, Impossible Software, or its affiliates. All rights reserved.