Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

Gets the list of document formats that can be translated in the system. There are filters for XML, Word, Excel and many other formats.


URL

(GET) settings/parserdomains2

PARAMETERS

token

The token obtained on connection

Required

 

RESULTS

Returns a list with these fields:

Domain

The identifier for the file format. APIs working with file formats will generally ask for this code.


Name

The name of the format.


TypeA numeric identifier. Internal use.
FileExtensionsAn array of file extensions that can be handled by the filter.


EXAMPLES

  	<ApiParserDomain>
        <Domain>FRAMEMAKER</Domain>
        <Name>◀Adobe FrameMaker▶</Name>
        <Type>25</Type>
        <FileExtensions xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <a:string>.mif</a:string>
        </FileExtensions>
    </ApiParserDomain>
    <ApiParserDomain>
        <Domain>INCOPY</Domain>
        <Name>◀Adobe InCopy▶</Name>
        <Type>37</Type>
        <FileExtensions xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <a:string>.icml</a:string>
        </FileExtensions>
    </ApiParserDomain>
    <ApiParserDomain>
        <Domain>INDESIGN</Domain>
        <Name>◀Adobe InDesign▶</Name>
        <Type>11</Type>
        <FileExtensions xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <a:string>.indd</a:string>
            <a:string>.idml</a:string>
        </FileExtensions>
    </ApiParserDomain>



  • No labels