DESCRIPTION - Allows an authenticated user to retrieve the key asset data (id, code, description, marks and duration) of all assets belonging to a given type.
INPUT
Parameter - _user
Description : Login name of the executor.
Example : user01
Parameter - _pwd
Description : Password of the executor.
Example : pass01
Parameter - _typeCode
Description : Code of the target type.
Example : clip
OUTPUT - <asset idAsset="1" Code="1" Description="Wonderwall" Type="CLIP" TCIN="0" TCOUT="7500" Length="7500"/>
<asset idAsset="2" Code="2" Description="Like a rolling Stone" Type="CLIP" TCIN="0" TCOUT="5900" Length="5900"/> ...
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="asset" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:attribute name="idAsset" type="xs:string" />
<xs:attribute name="Code" type="xs:string" />
<xs:attribute name="Description" type="xs:string" />
<xs:attribute name="Type" type="xs:string" />
<xs:attribute name="TCIN" type="xs:string" />
<xs:attribute name="TCOUT" type="xs:string" />
<xs:attribute name="Length" 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>