This project has retired. For details please refer to its Attic page.
Falcon - GET /api/entities/list/:entity-type

GET /api/entities/list/:entity-type

Description

Get list of the entities.

Parameters

  • :entity-type can be cluster, feed or process.

Results

List of the entities.

Examples

Rest Call

GET http://localhost:15000/api/entities/list/feed
Remote-User: rgautam

Result

{
    "entity": [
        {
            "name": "SampleOutput",
            "type": "feed"
        },
        {
            "name": "SampleInput",
            "type": "feed"
        }
    ]
}