Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created May 10, 2019 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/a6c2f0611e3ce7f06de1860d2a68b54d to your computer and use it in GitHub Desktop.
Save bjoerntx/a6c2f0611e3ce7f06de1860d2a68b54d to your computer and use it in GitHub Desktop.
Report report = new Report()
{
company = "Text Control, LLC",
name = "Bjoern Meyer"
};
TXTextControl.ReportingCloud.ReportingCloud rc =
new TXTextControl.ReportingCloud.ReportingCloud(
"user@domain.com",
"yourpassword",
new Uri("https://api.reporting.cloud/"));
MergeBody body = new MergeBody()
{
MergeData = report
};
List<byte[]> documents = rc.MergeDocument(body, "RemoveEmptyLines.tx", ReturnFormat.TX);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment