Skip to content

Instantly share code, notes, and snippets.

@fernandomitre7
Last active April 11, 2016 21:48
Show Gist options
  • Save fernandomitre7/176f382abc3e42b7c670 to your computer and use it in GitHub Desktop.
Save fernandomitre7/176f382abc3e42b7c670 to your computer and use it in GitHub Desktop.
{
"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