Hi,
You can find "Header" column which has a "BLOB" data type in EmailIn table. It contains the full text of the header of this inbound e-mail. Some other
attributes, such as FromAddress and ToAddresses, have values that are
extracted from the header, whereas Header contains the entire header text.
Please note that this field is not mandatory. There is no guaruntee that it will be filled under all email conditions.
For more info refer to "Selected Conceptual Data Models for the UCS Database" doc.
To get the Header attribute use PSDK contact protocol com.genesyslab.platform.contacts.protocol.contactserver.requests.RequestGetInteractionContent class.
On successful request you receives "EventGetInteractionContent" event. It returns the binary content of the interaction. You can get interaction attributes\values by using getInteractionAttributes() method. Entity attributes can be obtained using getEntityAttributes().
Roman Tereschenko