# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/File/ExportTemplates
?object_id=111
This method gets all the system configured export templates (as configured in Administration > Advanced > Import/Export)
To get the templates, you need to make a GET call to the following url :
http://localhost:8888/api/File/ExportTemplates
Result example :
[
{
"TemplateId": 0,
"TemplateName": "string",
"Extensions": "string"
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| object_id | query | long | Object Id. |
| Authorization | header | string | Add Authorization header token |