Retrieve List Parameters

get

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

Retrieves list parameters pertaining to a Project.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

Success
Body
Example Response (application/json)
{
    "items":[
        {
            "id":"/project/Sample2/parameter/ListParam1",
            "name":"ListParam1",
            "displayName":"ListParam1",
            "links":[
                {
                    "rel":"self",
                    "href":"http://example.com:7001/OracleBAMREST/api/projects/Sample2/parameters/listparameters/ListParam1"
                }
            ]
        }
    ],
    "links":[
        {
            "rel":"self",
            "href":"http://example.com:7001/OracleBAMREST/api/projects/Sample2/parameters/listparameters"
        }
    ]
}
Back to Top