Row Details

/api/repositories/{repository}/entities/{entity}/rows/{rowID}/details
Parameter Type Purpose
repository string the name of the Repository
entity int The ID of the entity to view
rowID int The ID of the row in the Entity
GET /api/repositories/(string: repository)/entities/(int: entityID)/rows/(int: rowID)/details

Lists the details of the attributes and values of the corresponding row in the Entity

GET /api/repositories/jupiter/entities/1/rows/2/details HTTP/1.1
Accept: application/json
Response Code Reason
200 No error
500 Server error

The response will be a Standard Response, with a list of details of the attributes and values of the corresponding row in the Entity.

The columns array will contain the list of columns for each data row.

Human Name Column Name Description
Column _col0 The position
Name _col1 The name of the column
Documented Datatype _col2 The documented datatype for the column
Length _col3 The length of the column value
Value _col4 The value of the column

data row will contain the details of the corresponding row of the Entity:

"rows": [
    {
        "dataRow": [
            "1",
            "Ordnum",
            "Integer",
            "5",
            "32696",
            "5",
            "32696"
        ]
    }
]

If there are no rows in the Entity, rows will be an empty string.