Cloud-device Related Operations

19.4.2.4 GetMetafileListByAssetAndDevice

DESCRIPTION: Allows an authenticated user to retrieve a list of all metafiles stored on a particular cloud device linked to a specific asset.

INPUT

  • _user: Login name of the executor;
  • _pwd: Password of the executor;
  • _idAsset: Id of the related asset;
  • _idDevice: ID of the related meta device.

OUTPUT

<mfl File_Id="1" CodecType="MXF"/>

<mfl File_Id="1" CodecType="WMV"/>

XSD (XML Schema Definition)

<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="WSApiResponse" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element name="WSApiResponse" msdata:IsDataSet="true" msdata:Locale="en-US">
  <xs:complexType>
    <xs:choice minOccurs="0" maxOccurs="unbounded">
      <xs:element name="Function">
        <xs:complexType>
          <xs: sequence>
            <xs:element name="mfl" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:attribute name="File_Id" type="xs:string" />
                <xs:attribute name="CodecType" type="xs:string" />
              </xs:complexType>
            </xs: element>
          </xs: sequence>
          <xs:attribute name="Name" type="xs:string" />
        </xs:complexType>
      </xs: element>
    </xs: choice>
  </xs:complexType>
</xs: element>
</xs: schema>