Skip to main content

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.

Note that a user can customize extensions in a document format configuration.

string[]

EXAMPLES

Excerpt of file formats:

CODE
[
    {
        "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"
        ]
    },....
]


 

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.