Search Knowledge Base by Keyword

Reports

< Back

Endpoints for getting Report information. Endpoints include:

reports Get a list of all reports.
reports/{report_id} Get all data for a specific report.

reports Get a list of all reports. No additional variables beyond the Bearer Token are required.

URLhttps://webroot/api/v1/reports

Parameters

Name Description
Authorization string (header)
Default value: Bearer {token}

Responses

Code Description
200
Example Value
application/json
{
    "type": "success",
    "data": [
        {
            "id": "1",
            "name": "Asset Count by Property",
            "label": "asset_count_by_property",
            "description": "Report showing Asset Counts by selected Property.",
            "report_status": "Enabled",
            "report_mode": "Production",
            "published": "No",
            "created_at": "2019-03-09 11:54:44",
            "updated_at": null,
            "is_dynamic": "0",
            "report_type": null
        },
        {
            "id": "2",
            "name": "All Asset Types",
            "label": "all_asset_types",
            "description": "Report showing all Asset Types and Properties.",
            "report_status": "Enabled",
            "report_mode": "Production",
            "published": "No",
            "created_at": "2019-03-09 11:54:44",
            "updated_at": null,
            "is_dynamic": "0",
            "report_type": null
        },
        {
            "id": "3",
            "name": "Asset Links Count by Asset Type",
            "label": "asset_links_count_by_asset_type",
            "description": "Report showing Asset Links Count by Asset Type.",
            "report_status": "Enabled",
            "report_mode": "Production",
            "published": "No",
            "created_at": "2019-03-09 11:54:44",
            "updated_at": null,
            "is_dynamic": "0",
            "report_type": null
        },
    ]
}

Headers

Name Type
Date string
Server string
X-Powered-By string
Set-Cookie string
Expires string
Cache-Control string
Pragma string
Content-Length string
Keep-Alive string
Connection string

reports/{report_id} Get all data for a specific report. The endpoint requires a report_id variable.

URLhttps://webroot/api/v1/reports/{report_id}

  • report_id = Integer

Example: https://webroot/api/v1/reports/89

Parameters

Name Description
Authorization string (header)
Default value: Bearer {token}

Responses

Code Description
200
Example Value
application/json
{
    "type": "success",
    "meta": {
        "name": "Application Packaging Queue",
        "description": "Report showing Applications ready to be packaged.",
        "created_at": "2022-03-22 17:13:08",
        "updated_at": "2023-05-19 10:47:40"
    },
    "data": [
        {
            "name": "Blue Jeans 2.29",
            "____Packaging_Readiness": "Ready",
            "lu__app_status": "4 - To Be Packaged",
            "display_name": "Blue Jeans",
            "version": "2.29",
            "vendor": "Blue Jeans",
            "lu__app_package": "Blue_Jeans_2.29",
            "lua__app_owner": "Aaron Brown",
            "luam__supported_os_version": "21H2 | 22H2",
            "computer_count": "1152",
            "id": "7",
            "computer_id_linked": "18",
            "lua__app_owner_id_linked": "6261"
        },
        {
            "name": "Mekko Graphics 6.9.2",
            "____Packaging_Readiness": "Ready",
            "lu__app_status": "4 - To Be Packaged",
            "display_name": "Mekko Graphics",
            "version": "6.9.2",
            "vendor": "Knowledge Management Associates, LLC",
            "lu__app_package": "Mekko_Graphics_6.9.2",
            "lua__app_owner": "Norah Galloway",
            "luam__supported_os_version": "21H2 | 22H2",
            "computer_count": "1159",
            "id": "17",
            "computer_id_linked": "13",
            "lua__app_owner_id_linked": "1088"
        },
        {
            "name": "Bomgar Automatic Elevation Service 14.2",
            "____Packaging_Readiness": "Ready",
            "lu__app_status": "4 - To Be Packaged",
            "display_name": "Bomgar Automatic Elevation Service",
            "version": "14.2",
            "vendor": "Bomgar Corporation",
            "lu__app_package": "Bomgar_Automatic_Elevation_Service_14.2",
            "lua__app_owner": "Martin Wheeler",
            "luam__supported_os_version": "21H2 | 22H2",
            "computer_count": "1079",
            "id": "27",
            "computer_id_linked": "13",
            "lua__app_owner_id_linked": "977"
        },
        {
            "name": "EAS Outlook plugin 6.9.0.0",
            "____Packaging_Readiness": "Ready",
            "lu__app_status": "4 - To Be Packaged",
            "display_name": "EAS Outlook plugin",
            "version": "6.9.0.0",
            "vendor": "Autonomy, Inc.",
            "lu__app_package": "EAS_Outlook_plugin_6.9.0.0",
            "lua__app_owner": "Rebekah Sharp",
            "luam__supported_os_version": "21H2 | 22H2",
            "computer_count": "1498",
            "id": "36",
            "computer_id_linked": "23",
            "lua__app_owner_id_linked": "1162"
        },
        {
            "name": "Autodesk AutoCAD 2022",
            "____Packaging_Readiness": "Ready",
            "lu__app_status": "4 - To Be Packaged",
            "display_name": "Autodesk AutoCAD",
            "version": "2022",
            "vendor": "Autodesk",
            "lu__app_package": "Autodesk_AutoCAD_2022",
            "lua__app_owner": "Walter Jacobson",
            "luam__supported_os_version": "21H2 | 22H2",
            "computer_count": "636",
            "id": "48",
            "computer_id_linked": "2884",
            "lua__app_owner_id_linked": "1356"
        }
    ]
}

Headers

Name Type
Date string
Server string
X-Powered-By string
Set-Cookie string
Expires string
Cache-Control string
Pragma string
Content-Length string
Keep-Alive string
Connection string