Last active
April 11, 2016 21:48
-
-
Save fernandomitre7/176f382abc3e42b7c670 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"url": 'pah/to/template/url.docx', | |
"template": '(OPTIONAL)BASE64_ENCODED_FILE', | |
"substitutions": { | |
"key1": "value1", | |
"key2": "value2", | |
"key3": "value3" | |
}, | |
"sections" : [ | |
{ | |
"name": "section name e.g. 'userSection' for {#section userSection}{/section userSection}" | |
"substitutions": { | |
"key1": "value1", | |
"key2": "value2", | |
... | |
} | |
}, | |
{...} | |
], | |
"tables":[ | |
{ | |
"name": "table name e.g. 'contact' for {#foreach contact}{/foreach contact}", | |
"rows": [ | |
{ | |
"row1_key1": "row1_value1", | |
"row1_key2": "row1_value2" | |
}, | |
{ | |
"row2_key1": "row2_value1", | |
"row2_key2": "row2_value2" | |
} | |
] | |
}, | |
{...} | |
], | |
"output": 'BASE64_ENCODED_OUTPUT_FILE'', | |
"output_type": enum ['doc', 'pdf'] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment