Retrieve Queries

get

/OracleBAMREST/api/projects/{projectname}/queries

Retrieves list of the type of queries that are supported by BAM.

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":[
        {
            "resource":"businessqueries",
            "links":[
                {
                    "rel":"self",
                    "href":"http://example.com:7001/OracleBAMREST/api/projects/BAMFramework/queries/businessqueries"
                }
            ]
        },
        {
            "resource":"continuousqueries",
            "links":[
                {
                    "rel":"self",
                    "href":"http://example.com:7001/OracleBAMREST/api/projects/BAMFramework/queries/continuousqueries"
                }
            ]
        }
    ],
    "links":[
        {
            "rel":"self",
            "href":"http://example.com:7001/OracleBAMREST/api/projects/BAMFramework/queries"
        }
    ]
}
Back to Top

Examples

The following example shows how to view published items in bulk by GUIDs by submitting a GET request on the REST resource using cURL.

curl -i -X GET https://<hostname>/content/published/api/v1/items/bulk/aggregate?guids=ModelType_core_65c6becf-08d1-4755-9d5e-cecd3eef34ef,ModelType_core_b446f89e-1516-468f-9b7a-f483613641a2&access-token= Y2FhcyBkZWZhdWx0IHRva2Vu

Or

curl -i -X GET ?H ???access-token: Y2FhcyBkZWZhdWx0IHRva2Vu??? https://<hostname>/content/published/api/v1/items/bulk/aggregate?guids=ModelType_core_65c6becf-08d1-4755-9d5e-cecd3eef34ef,ModelType_core_b446f89e-1516-468f-9b7a-f483613641a2&

Example: Response Header

The following shows an example of the response header.

HTTP/1.1 200 OK
Cache-Control: max-age=0
Content-Length: 1750
Content-Type: application/json
Date: Tue, 03 Jan 2017 10:30:12 GMT
Etag: "ba12800a55d800aa095e45c5a7d8e6a5487b72727b4753febd81fd755757e8d7"
Server: Apache-Coyote/1.1
X-XSS-Protection: 1
x-content-type-options: nosniff

Example: Response Body

The following is an example of the response returned in JSON format. It shows published items in bulk by GUIDs: ModelType_core_65c6becf-08d1-4755-9d5e-cecd3eef34ef,ModelType_core_b446f89e-1516-468f-9b7a-f483613641a2.


 
Back to Top