Previous Next

Retrieve Parameters

get

/OracleBAMREST/bam/api/projects/{projectname}/queries/businessqueries/parameters

Retrieves type of Parameters supported by BAM.

Request

There are no request parameters for this operation.

Response

Supported Media Types
  • application/json
  • application/xml
200 Response
Success
Body
Root Schema : /paths/~1projects~1{projectname}~1queries~1businessqueries~1parameters/get/responses/200/schema
Example application/json

{
    "items":[
        {
            "resource":"valueparameters",
            "links":[
                {
                    "rel":"self",
                    "href":"http://example.com:7001/OracleBAMREST/bam/api/projects/BAMFramework/parameters/valueparameters"
                }
            ]
        },
        {
            "resource":"listparameters",
            "links":[
                {
                    "rel":"self",
                    "href":"http://example.com:7001/OracleBAMREST/bam/api/projects/BAMFramework/parameters/listparameters"
                }
            ]
        }
    ],
    "links":[
        {
            "rel":"self",
            "href":"http://example.com:7001/OracleBAMREST/bam/api/projects/BAMFramework/parameters"
        }
    ]
}