Displaying attribute values

You can send a request asking to display attribute values assigned on records.

Records are returned in Record elements. Each attribute value on a record is returned in a format like this example:
<ProductName type="mdex:string">Bike Wash - Dissolver</ProductName>
This example shows a record with five managed attribute values:
<cs:Record>
   <Decimal cs:ValueName="53" type="mdex:string">/1-100/51-60/53</Decimal>
   <English type="mdex:string">five three</English>
   <FirstDigit cs:ValueName="5" type="mdex:string">/5</FirstDigit>
   <Hex cs:ValueName="0035" type="mdex:string">/0001-0100/0031-0040/0035</Hex>
   <LastDigit cs:ValueName="3" type="mdex:string">/3</LastDigit>
   <Num type="mdex:int">53</Num>
   <NumberOfDigits cs:ValueName="2" type="mdex:string">/2</NumberOfDigits>
   <Spanish type="mdex:string">cinco tres</Spanish>
</cs:Record>

Your front-end application can iterate through the record, extract the attribute values for the record, and display a table containing the results.