We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the following code, adding an attachment to a service bill fails with a 404 not found error.
BillAttachmentData billAttachmentData = new BillAttachmentData(); billAttachmentData.OriginalFileName = "test.pdf"; billAttachmentData.FileBase64Content = Convert.ToBase64String(attachment); BillAttachmentWrapper billAttachmentWrapper = new BillAttachmentWrapper(); billAttachmentWrapper.Attachments = new List<BillAttachmentData>(); billAttachmentWrapper.Attachments.Add(billAttachmentData); BillAttachmentWrapper returnedData = serviceBillAttachmentService.InsertEx(CompanyFile, transaction.UID, billAttachmentWrapper, Credentials);
The text was updated successfully, but these errors were encountered:
fix for issue myob-oss#238 - Adding an attachment to a service bill f…
759a68b
…ails
No branches or pull requests
Using the following code, adding an attachment to a service bill fails with a 404 not found error.
The text was updated successfully, but these errors were encountered: