Retrieve a Value Parameter

get

/OracleBAMREST/api/projects/{projectname}/parameters/valueparameters/{valueparametername}

Retrieves the Value Parameter details based on value 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":{
        "systemManaged":false,
        "internal":false,
        "inDataObject":false,
        "displayName":"ASN_DAYWISEVOL_YEAR_PARAM",
        "createdDate":"2015-05-12T23:55:24.303+0000",
        "id":"/project/BAMFramework/parameter/ASN_DAYWISEVOL_YEAR_PARAM",
        "createdBy":"testuser",
        "name":"ASN_DAYWISEVOL_YEAR_PARAM",
        "value":{
            "beamObject":null
        },
        "modifiedBy":"testuser",
        "required":true,
        "dataType":"INT",
        "defaultValue":{
            "beamObject":null
        },
        "modifiedDate":"2015-05-12T23:55:24.303+0000",
        "description":null
    },
    "links":[
        {
            "rel":"self",
            "href":"http://example.com:7001/OracleBAMREST/api/projects/BAMFramework/parameters/valueparameters/ASN_DAYWISEVOL_YEAR_PARAM"
        }
    ]
}
Back to Top