Hi All
Trying to acccess the delivery report for an SMS job in C#. The job itself submits fine, and deliveries are being made to valid mobile numbers. The reports defined at the time of JobSumit are:
Reports = new EasyLink.JobSubmit.ReportOptionsType{
DeliveryReport = new EasyLink.JobSubmit.ReportOptionsTypeDeliveryReport {
DeliveryReportType = EasyLink.JobSubmit.MainReportTypeEnum.detail
},
FinalReport = new EasyLink.JobSubmit.ReportOptionsTypeFinalReport{
ReportType = EasyLink.JobSubmit.AllReportTypeEnum.detail
}
}
When reviewed in the portal, the delivery to mobile 12344567845 clearly failed (DELF)

However in code I cannot find the corresponding indication that something went wrong. I have tried accessing it through JobDeliveryStatus- JobDeliveryStatus[0].JobData[0].DeliveryGroup[0].DeliveryDetail.State.code is always 7 (Sent)
JobDetails where the CSV string in the XQN element also holds 7 for the element.
My question is how to identify SMS deliveries that failed?
Thank you in Advance,
Tamas