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:
<attribute name="AMOUNT_SOLD" type="mdex:double">550.370000</attribute>

The name field lists the name of the standard or managed attribute, while the type field shows the data type of that attribute. Managed attributes also have the displayName that is used for UI purposes.

This example shows a record with four standard attribute values and one managed attribute value:
<cs:Record>
   <cs:attribute name="AFFINITY_CARD" type="mdex:boolean">false</cs:attribute>
   <cs:attribute name="AMOUNT_SOLD" type="mdex:double">550.370000</cs:attribute>
   <cs:attribute name="CALENDAR_MONTH_DESC" type="mdex:string">2000-03</cs:attribute>
   <cs:attribute name="Channel" type="mdex:string" displayName="Direct Sales">3</cs:attribute>
   <cs:attribute name="PROMO_FK" type="mdex:long">999</cs:attribute>
</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.