fm:ClientTransferList


The ClientTransferList component allows you to list the active FTP configurations in your application.

Example 1:

The following shows a list of the active FTP configurations in the application that support `brightcove` manifest type and all filetypes.

<fm:ClientTransferList manifestType="brightcove" fileType="0" > <ul> <fm:Loop> <li> Transfer Id: {$$transfer.id}, name: {$$transfer.name}, triggerevent: {$$transfer.triggerevent} protocol {$$transfer.protocol}, manifesttype {$$transfer.manifesttype} filetype {$$transfer.filetype} </li> </fm:Loop> </ul> <fm:NoResults> No results were found for this crirteria. </fm:NoResults> </fm:ClientTransferList>

Supported attributes

NameRequiredDefaultDescription
fileTypeOptionalThe filetype that the FTP supports. Values can be: 0 (all file types), 1 (image), 2 (video) and 3 (audio).
manifestTypeOptionalThe manifesttype of the transfer; possible values are `brightcove`, `custom`, `ooyala`, `none`

Template variables

NameDescription
transfer.idThe id of the FTP configuration.
transfer.nameThe name of the FTP configuration.
transfer.triggereventDetermines whether the FTP occurs manually or automatically; respectively, triggerevent values are `manual` and `conversion`
transfer.protocolThe protocol of the transfer; values can be: `ftp`, `ftp` and `youtube`
transfer.manifesttypeThe manifesttype of the transfer; possible values are `brightcove`, `custom`, `ooyala`, `none`
transfer.filetypeThe filetype that the FTP supports. Values can be: 0 (all file types), 1 (image), 2 (video) and 3 (audio)

See also

More examples

Example 2:

The following shows a list of the active FTP configurations in the application that support all manifest types and video filetypes.

<fm:ClientTransferList manifestType="" fileType="2" > <ul> <fm:Loop> <li> Transfer Id: {$$transfer.id}, name: {$$transfer.name}, triggerevent: {$$transfer.triggerevent} protocol {$$transfer.protocol}, manifesttype {$$transfer.manifesttype} filetype {$$transfer.filetype} </li> </fm:Loop> </ul> <fm:NoResults> No results were found for this crirteria. </fm:NoResults> </fm:ClientTransferList>