For some reason, the Attention field I am setting in the API shows up as the Subject in the online Portal. It shows up (as expected) as the Attn in the cover sheet. Is there something I am perhaps doing wrong in my code? Here are some code excerpts:
PremiereConnect.EncodableStringType CoverSheet_Attn = new PremiereConnect.EncodableStringType();
CoverSheet_Attn.Value = faxAttr.attn;
CoverSheet.CoversheetAttn = CoverSheet_Attn;
PremiereConnect.EncodableStringType JS_Subject = new PremiereConnect.EncodableStringType();
JS_Subject.Value = faxAttr.subject;
JS_FaxOptions.Subject = JS_Subject;
PilotLine.PilotlineText = faxAttr.subject;