Skip to content
New issue

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

Adding an attachment to a service bill fails #238

Open
AndrasFromTransAxHealthCare opened this issue Oct 15, 2023 · 0 comments
Open

Adding an attachment to a service bill fails #238

AndrasFromTransAxHealthCare opened this issue Oct 15, 2023 · 0 comments

Comments

@AndrasFromTransAxHealthCare

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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant