settings/documentformats
Gets the different type of file types that Wordbee Translator can translate. These comprise XML, Word, Excel and many other formats.
Per each type of file/document, an administrator can add one or more configurations that specify in detail how to extract the text to translate. See this method to list these configurations: settings/documentformats/configs/list
URL
(GET) /api/settings/documentformats
PARAMETERS
The method has no parameters.
RESULTS
The result is a JSON array with one element per format:
domain | The identifier for the file format. APIs working with file formats will generally ask for this code. | string |
name | The name of the format. | string |
type | A numeric identifier. Internal use. | int |
extensions | An array of file extensions that can be handled by the filter. | string[] |
EXAMPLES
Excerpt of file formats:
[
{
"domain": "FRAMEMAKER",
"name": "Adobe FrameMaker",
"type": 25,
"extensions": [
".mif"
]
},
{
"domain": "INCOPY",
"name": "Adobe InCopy",
"type": 37,
"extensions": [
".icml"
]
},
{
"domain": "INDESIGN",
"name": "Adobe InDesign",
"type": 11,
"extensions": [
".indd",
".idml"
]
},....
]