DESCRIPTION: Allows an authenticated user to retrieve the EDL information (number, mark in and mark out) of all segments within a certain EDL of an asset matching a given keyword.
WARNING: The "description" field will be returned for all segments except for those generated by insertion keyframes; this is because, in that particular case, segments are calculated rather than retrieved.
INPUT:
_user: Login name of the executor.
_pwd: Password of the executor.
_idAsset: Id of the target asset(s).
_version: The number of EDL to be queried (from 1 to 9). Enter a lesser value (e.g. 0) to return information from all EDL
_coduser: Number of the station to which the asset is related.
OUTPUT:
<string xmlns="http://www.etere.eu/EtereWSApi"><?xml version="1.0" encoding="utf-8"?> <WSApiResponse> <Function Name="GetAssetExplodedEDLById"> <dbo.ExplodeEdl rownr="1" Version="1" markin="389" markout="1534" description="/><dbo.ExplodeEdl rownr="2" Version="1" markin="1761" markout="2333" description=""/> </Function> </WSApiResponse> </string>
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="dbo.ExplodeEdl" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:attribute name="rownr" type="xs:string" />
<xs:attribute name="Version" type="xs:string" />
<xs:attribute name="markin" type="xs:string" />
<xs:attribute name="mark out" type="xs:string" />
<xs:attribute name="description" 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>