Created
October 17, 2017 12:38
-
-
Save bjoerntx/3ba24b59bb498d1a02b6ec3b0c4e77ef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ReportingCloud rc = new ReportingCloud( | |
"username", | |
"password", | |
new Uri("https://api.reporting.cloud")); | |
// create dummy data | |
Invoice invoice = new Invoice(); | |
// create a new MergeBody object | |
MergeBody body = new MergeBody(); | |
body.MergeData = invoice; | |
// merge the document | |
List<byte[]> results = rc.MergeDocument(body, templateName, ReturnFormat.PDF); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment