Getting the Details of a Connection

Usage

Returns the details of a connection stored in the CMS repository.

Request

GET /connections/<connectionID>

Response

Response type: application/xml or application/json

Example

GET /connections/6224

XML response:

<connection type="Relational"> 
    <id>6224</id>  
    <cuid>AZKgD3.WRiJAhYfy7vjCZ_A</cuid>  
    <name>beach</name>  
    <folderId>6069</folderId>  
    <path>Connections/MyConnections</path>  
    <updated>2014-08-06T14:11:02.000+02:00</updated>  
    <createdBy>Administrator</createdBy>  
    <database>Oracle 10</database>  
    <networkLayer>Oracle OCI</networkLayer> 
</connection>

JSON response:

{"connection":
    {"@type":"Relational",
     "id":6224,
     "cuid":"AZKgD3.WRiJAhYfy7vjCZ_A",
     "name":"beach",
     "folderId":6069,
     "path":"Connections\/MyConnections",
     "updated":"2014-08-06T14:11:02.000+02:00",
     "createdBy":"Administrator",
     "database":"Oracle 10",
     "networkLayer":"Oracle OCI"}
}