AE REST API - Object Search

Search for specific objects "WORKFLOW.DEMO" through the advanced search with:

  • object_name = name pattern "*FLOW*"

  • location = root folder

  • include_subfolders = all AE folders

  • max_results = limit result set to 20 entries

{
    "filters": [{
        "filter_identifier": "object_name",
        "object_name": "*FLOW*"
    }, {
        "filter_identifier": "location",
        "location": "\\",
        "include_subfolders": true
    }],
    "max_results": 20
}

HTTP 200 Response:

{
    "data": [
        {
            "name": "PRPT.WORKFLOW.1",
            "type": "PRPT",
            "id": "38785339",
            "title": null,
            "archive_key1": null,
            "archive_key2": null,
            "folder_path": "\\AE_REST_API\\GENERAL",
            "folder_id": "38785363",
            "modified_date": 1523952080000,
            "last_used_date": null,
            "link": false,
            "score": 0.43229827,
            "calendar_keyword_name": null,
            "calendar_keyword_ctype": null,
            "calendar_keyword_valid_from": null,
            "calendar_keyword_valid_to": null,
            "calendar_keyword_child_calendar_names": [],
            "creation_date": 1523952080000
        },
        {
            "name": "PRPT.WORKFLOW.2",
            "type": "PRPT",
            "id": "38785338",
            "title": null,
            "archive_key1": null,
            "archive_key2": null,
            "folder_path": "\\AE_REST_API\\GENERAL",
            "folder_id": "38785363",
            "modified_date": 1523952080000,
            "last_used_date": null,
            "link": false,
            "score": 0.43229827,
            "calendar_keyword_name": null,
            "calendar_keyword_ctype": null,
            "calendar_keyword_valid_from": null,
            "calendar_keyword_valid_to": null,
            "calendar_keyword_child_calendar_names": [],
            "creation_date": 1523952080000
        },        {
            "name": "WORKFLOW.DEMO",
            "type": "JOBP",
            "id": "38785337",
            "title": null,
            "archive_key1": null,
            "archive_key2": null,
            "folder_path": "\\AE_REST_API\\GENERAL",
            "folder_id": "38785363",
            "modified_date": 1523952080000,
            "last_used_date": null,
            "link": false,
            "score": 0.43229827,
            "calendar_keyword_name": null,
            "calendar_keyword_ctype": null,
            "calendar_keyword_valid_from": null,
            "calendar_keyword_valid_to": null,
            "calendar_keyword_child_calendar_names": [],
            "creation_date": 1523952079000
        }
    ],
    "total": 3,
    "hasmore": false,
    "update_timestamp": 1523966347100
}

Request: POST http://{host}:{port}/ae/api/v1/{client}/search

Example:http://my-jcp-host:8088/ae/api/v1/8001/search

See also: