Retrieve a List Parameter

get

/OracleBAMREST/api/projects/{projectname}/parameters/listparameters/{listparametername}

Retrieves the List Parameter details based on list parameter name.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

Success
Body
Example Response (application/json)
{
    "parameter":{
        "sourceColumnName":"name1",
        "systemManaged":false,
        "internal":false,
        "inDataObject":false,
        "displayName":"ListParam1",
        "createdDate":"2015-05-18T10:23:28.337+0000",
        "id":"/project/Sample2/parameter/ListParam1",
        "createdBy":"testuser",
        "name":"ListParam1",
        "value":[
        ],
        "modifiedBy":"testuser",
        "required":true,
        "dataType":"VARCHAR",
        "enableStaticOptions":false,
        "defaultValue":[
            "ALL"
        ],
        "modifiedDate":"2015-05-18T10:23:28.337+0000",
        "options":[
            "ALL",
            "NULL",
            "BLANK",
            "asas",
            "sdsd"
        ],
        "sourceDataObjectName":"Sample2",
        "description":null,
        "multiple":true
    },
    "links":[
        {
            "rel":"self",
            "href":"http://example.com:7001/OracleBAMREST/api/projects/Sample2/parameters/listparameters/ListParam1"
        }
    ]
}
Back to Top