\ No newline at end of file
diff --git a/sample/doc/invoice-templates/DeleteInvoiceTemplate.html b/sample/doc/invoice-templates/DeleteInvoiceTemplate.html
new file mode 100644
index 0000000..d2669dd
--- /dev/null
+++ b/sample/doc/invoice-templates/DeleteInvoiceTemplate.html
@@ -0,0 +1,16 @@
+invoice-templates/DeleteInvoiceTemplate
invoice-templates/DeleteInvoiceTemplate.php
<?php
Delete Invoice Template Sample
+
This sample code demonstrate how you can delete
+an invoice template
Delete invoice object by calling the
+delete method
+on the Invoice Template class by passing a valid
+notification object
+(See bootstrap.php for more on ApiContext)
\ No newline at end of file
diff --git a/sample/doc/invoice-templates/GetAllInvoiceTemplates.html b/sample/doc/invoice-templates/GetAllInvoiceTemplates.html
new file mode 100644
index 0000000..892fe09
--- /dev/null
+++ b/sample/doc/invoice-templates/GetAllInvoiceTemplates.html
@@ -0,0 +1,13 @@
+invoice-templates/GetAllInvoiceTemplates
NOTE: PLEASE DO NOT USE RESULTPRINTER CLASS IN YOUR ORIGINAL CODE. FOR SAMPLE ONLY
ResultPrinter::printError("Get all Templates", "Templates", null, null, $ex);
+ exit(1);
+}
NOTE: PLEASE DO NOT USE RESULTPRINTER CLASS IN YOUR ORIGINAL CODE. FOR SAMPLE ONLY
ResultPrinter::printResult("Get all Templates", "Templates", null, null, $templates);
+
+return$templates;
\ No newline at end of file
diff --git a/sample/doc/invoice-templates/GetInvoiceTemplate.html b/sample/doc/invoice-templates/GetInvoiceTemplate.html
new file mode 100644
index 0000000..716461a
--- /dev/null
+++ b/sample/doc/invoice-templates/GetInvoiceTemplate.html
@@ -0,0 +1,19 @@
+invoice-templates/GetInvoiceTemplate
invoice-templates/GetInvoiceTemplate.php
<?php
Retrieve Invoice Template Sample
+
This sample code demonstrate how you can get
+an invoice template using templateId.
Retrieve the invoice template object by calling the
+static get method
+on the Template class by passing a valid
+Template ID
+(See bootstrap.php for more on ApiContext)
\ No newline at end of file
diff --git a/sample/doc/invoice-templates/UpdateInvoiceTemplate.html b/sample/doc/invoice-templates/UpdateInvoiceTemplate.html
new file mode 100644
index 0000000..a6b3a22
--- /dev/null
+++ b/sample/doc/invoice-templates/UpdateInvoiceTemplate.html
@@ -0,0 +1,12 @@
+invoice-templates/UpdateInvoiceTemplate
invoice-templates/UpdateInvoiceTemplate.php
<?php
Update Invoice Sample
+
This sample code demonstrate how you can update
+an invoice.
\ No newline at end of file
diff --git a/sample/index.php b/sample/index.php
index 094a9b8..bc55caf 100644
--- a/sample/index.php
+++ b/sample/index.php
@@ -1358,7 +1358,7 @@ if (PHP_SAPI == 'cli') {
Create Invoice Template Sample
+This sample code demonstrate how you can create +an invoice template.