Getting the Links of a Document

Gets the content of a documents links dictionary.

Request

GET <webiURL>/documents/{documentId}/links

Where:

  • {documentId} is the identifier of the document retrieved from the list of documents
Response

Response type: application/xml or application/json

Response body: a series of <link> identified by <id> and <name>.

Example

GET <webiURL>/documents/8022/links

<links>
    <link dataType="String" qualification="Dimension">  
        <id>LB</id> 
        <name>Category</name>
    </link>    
    <link dataType="String" qualification="Dimension"> 
        <id>L8</id> 
        <name>City</name>
    </link>    
    ...
    <link dataType="String" qualification="Dimension"> 
        <id>L6</id> 
        <name>Year</name>
    </link>
</links>