We have a file attachment synching feature that is used by an Outlook add-in (OfficeJS). The EWS token and URL are fetched using [3] and [4]
We fetch attachments using EWS SOAP API calls detailed here[2]. However, we have noticed that some of these calls fail randomly and will succeed in subsequent retries. I do not think this is related to signed emails [1]. Is there a rate limit on the EWS SOAP API calls?
EDIT:
The response returned by a direct SOAP request to the EWS endpoint:
<m:GetAttachmentResponseMessage ResponseClass="Error">
<m:MessageText>The specified attachment Id is invalid.</m:MessageText>
<m:ResponseCode>ErrorInvalidAttachmentId</m:ResponseCode>
<m:DescriptiveLinkKey>0</m:DescriptiveLinkKey>
<m:Attachments/>
</m:GetAttachmentResponseMessage>
Reference