# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/File/TemplateFiles
?record_id=1111&object_id=111&template_id=6
This method exports all the files related to the selected record using a specific Export Template
To get the template files, you need to make a GET call to the following url
:
http://localhost:8888/api/File/TemplateFiles
Result example :
HttpResponseMessage
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| record_id | query | string | Record Id. |
| object_id | query | long | Object Id. |
| template_id | query | long | Template Id. You can get from another method (http://localhost:8888/api/File/ExportTemplates). |
| Authorization | header | string | Add Authorization header token |