im-traffic-by-image-and-browser

🚧

The im-traffic-by-image-and-browser report is being discontinued

This report is deprecated and will be deactivated in Q1 2025. As an alternative, use the new delivery/ivm/image-traffic report, based on the Reporting API v2.

The following shows how to generate the im-traffic-by-image-and-browser report using either the Reporting API's Generate a report POST operation or the Get a cacheable report GET operation. Details about each report's supported products, metrics, filters, and available data intervals are also available dynamically by running the API's Get a report type operation, also shown below. See also other available reports.

Report definition

Image Manager traffic indexed by content type and browser family.

Business object: cpcode

Data available for: 92 days

Required products: Image Manager

Available metrics

MetricDescription
Data metrics
edgeImageBytesThe volume used during requests for images that use Image Manager.
edgeImageBytesPercentThe percentage of volume for the associated URL as compared to all requests.
edgeImageHitsThe number of requests for images that use Image Manager.
edgeImageHitsPercentThe percentage of requests for the associated URL as compared to all requests.
Summary metrics
totalEdgeImageBytesSum of all edge bytes seen during time range.
totalEdgeImageHitsSum of all edge hits seen during time range.

Available filters

FilterTypeDescription
Optional filters
token_policyStringThe Image Manager policy for which you want data included. Policies are associated with their API tokens.

POST request

POST /reporting-api/v1/reports/im-traffic-by-image-and-browser/versions/1/report-data{?start,​end}

Sample: /reporting-api/v1/reports/im-traffic-by-image-and-browser/versions/1/report-data?start​=2020-05-01T00%3A00%3A00Z​&end​=2020-06-01T00%3A00%3A00Z

Query parameters

ParameterTypeSampleDescription
Required
startString2020-05-01T00:00:00ZSpecifies the start of the reported period as an ISO-8601 timestamp with optional time zone. The report includes data that matches the start value's timestamp.
endString2020-06-01T00:00:00ZSpecifies the end of the reported period as an ISO-8601 timestamp with optional time zone. The report excludes any data that matches the end value's timestamp.

JSON request members

MemberTypeDescription
objectIdsArraySpecifies the set of cpcode values you want to report on.
objectIdsEnumerationAs an alternative to an array of ID values, specify all as a string for unfiltered data. Either way, objectIds is required.
metricsArrayThe set of desired metrics. If omitted, the report includes all available metrics.
filtersMap of ArraysSpecifies a set of custom filters, with each filter's name keying an array with each filter's set of values.

Request body:

{
    "objectIds": [
        "55232",
        "23433",
        "32433"
    ],
    "metrics": [
        "edgeImageBytes",
        "edgeImageBytesPercent",
        "edgeImageHits",
        "edgeImageHitsPercent",
        "totalEdgeImageBytes",
        "totalEdgeImageHits"
    ],
    "filters": {
        "token_policy": [
            "577596",
            "577597"
        ]
    }
}

GET request

GET /reporting-api/v1/reports/im-traffic-by-image-and-browser/versions/1/report-data{?start,​end,​objectIds,​allObjectIds,​metrics,​filters}

Sample: /reporting-api/v1/reports/im-traffic-by-image-and-browser/versions/1/report-data?start​=2020-05-01T00%3A00%3A00Z​&end​=2020-06-01T00%3A00%3A00Z​&objectIds​=55232,​23433,​32433​&metrics​=edgeImageBytes%2CedgeImageBytesPercent​&filters​=token_policy%3D577595%2Ctoken_policy%3D577599

Query parameters

ParameterTypeSampleDescription
Required
startString2022-06-23T13:55:00ZSpecifies the start of the reported period as an ISO-8601 timestamp with optional time zone. The report includes data that matches the start value’s timestamp.
endString2022-06-23T14:15:00ZSpecifies the end of the reported period as an ISO-8601 timestamp with optional time zone. The report excludes any data that matches the end value’s timestamp.
Optional
allObjectIdsBooleantrueAs an alternative to objectIds, enabling this generates a report that includes all IDs available for the cpcode objectType. This parameter is ignored if the request also specifies a set of objectIds.
objectIdsString55232,​23433,​32433As an alternative to allObjectIds, specifies the set of unique IDs for the cpcode objectType you want to report on, formatted as a comma-delimited list.
metricsStringedgeImageBytes,​edgeImageBytesPercentSpecifies a comma-separated list of metrics to include in the report, otherwise all metrics if omitted. The set of available metrics depends on the type of report. URL-encode the entire value in the GET request.
filtersStringtoken_policy=​577595,​token_policy=​577599Specifies criteria to filter the report's data. The set of available filters depends on the type of report. Separate each filter name and value with an equals (=) character, and separate various name/value pairs with commas (,). To specify more than one filter value, repeat the filter name. See the accompanying example for guidance. URL-encode the entire value in the GET request.

JSON response

Status 200 application/json

Response body:

{
    "metadata": {
        "name": "im-traffic-by-image-and-browser",
        "version": "1",
        "outputType": "FLAT",
        "groupBy": [
            "image_type",
            "browser_family"
        ],
        "start": "2020-05-01T00:00:00Z",
        "end": "2020-06-01T00:00:00Z",
        "availableDataEnds": null,
        "suggestedRetryTime": null,
        "rowCount": 4,
        "filters": [
            {
                "name": "token_policy",
                "values": [
                    "577598",
                    "577597"
                ]
            }
        ],
        "columns": [
            {
                "name": "groupBy",
                "label": "image_type"
            },
            {
                "name": "groupBy",
                "label": "browser_family"
            },
            {
                "name": "edgeImageBytes",
                "label": "Edge Bytes"
            },
            {
                "name": "edgeImageBytesPercent",
                "label": "Edge Bytes Percent"
            },
            {
                "name": "edgeImageHits",
                "label": "Edge Hits"
            },
            {
                "name": "edgeImageHitsPercent",
                "label": "Edge Hits Percent"
            }
        ],
        "objectType": "cpcode",
        "objectIds": [
            "55232",
            "23433",
            "32433"
        ]
    },
    "data": [
        {
            "image_type": "image/x-icon",
            "browser_family": "ie",
            "edgeImageBytes": "2043",
            "edgeImageBytesPercent": "34",
            "edgeImageHits": "4074",
            "edgeImageHitsPercent": "86"
        },
        {
            "image_type": "image/bmp",
            "browser_family": "google",
            "edgeImageBytes": "3553",
            "edgeImageBytesPercent": "20",
            "edgeImageHits": "3837",
            "edgeImageHitsPercent": "55"
        },
        {
            "image_type": "image/jpeg",
            "browser_family": "msie",
            "edgeImageBytes": "2827",
            "edgeImageBytesPercent": "26",
            "edgeImageHits": "1683",
            "edgeImageHitsPercent": "67"
        },
        {
            "image_type": "image/x-rgb",
            "browser_family": "chrome",
            "edgeImageBytes": "3009",
            "edgeImageBytesPercent": "72",
            "edgeImageHits": "1795",
            "edgeImageHitsPercent": "49"
        }
    ],
    "summaryStatistics": {
        "totalEdgeImageBytes": {
            "value": "941",
            "details": {}
        },
        "totalEdgeImageHits": {
            "value": "1830",
            "details": {}
        }
    }
}

CSV response

Status 200 text/csv

Response Body:

#METADATA_START
name,​im-traffic-by-image-and-browser
version,​1
source,​im-traffic-by-image-and-browser/versions/1
groupBy,​image_type,​browser_family
start,​2020-05-01T00:00:00Z
end,​2020-06-01T00:00:00Z
availableDataEnds,
suggestedRetryTime,
rowCount,​4
objectType,​cpcode
objectIds,​55232,​23433,​32433
token_policy,​577598,​577597
#METADATA_END

#SUMMARYSTATISTICS_START
totalEdgeImageBytes,​941
totalEdgeImageHits,​1830
#SUMMARYSTATISTICS_END

#COLUMNS_START
image_type,​browser_family,​edgeImageBytes,​edgeImageBytesPercent,​edgeImageHits,​edgeImageHitsPercent
#COLUMNS_END

#DATA_START
image/x-icon,​ie,​2043,​34,​4074,​86
image/bmp,​google,​3553,​20,​3837,​55
image/jpeg,​msie,​2827,​26,​1683,​67
image/x-rgb,​chrome,​3009,​72,​1795,​49
#DATA_END

Get report details

This sample Get a report type operation gets the same information you need to run the im-traffic-by-image-and-browser report as provided in this reference documentation, but available dynamically to your API client application.

GET /reporting-api/v1/reports/im-traffic-by-image-and-browser/versions/1

Status 200 application/json

Response body:

{
    "name": "im-traffic-by-image-and-browser",
    "description": "Image Manager traffic indexed by content type and browser family.",
    "businessObjectName": "cpcode",
    "version": 1,
    "status": "DEPRECATED",
    "deprecated": true,
    "timeBased": false,
    "outputType": "FLAT",
    "requiredProducts": [
        "Image Manager"
    ],
    "requiredRoles": [
        "Image Manager Report - View"
    ],
    "available": true,
    "metrics": [
        {
            "name": "edgeImageBytes",
            "description": "The volume used during requests for images that use Image Manager.",
            "label": "Edge Bytes",
            "unit": "BYTE",
            "summaryStatistic": false
        },
        {
            "name": "edgeImageBytesPercent",
            "description": "The percentage of volume for the associated URL as compared to all requests.",
            "label": "Edge Bytes Percent",
            "unit": "RATIO",
            "summaryStatistic": false
        },
        {
            "name": "edgeImageHits",
            "description": "The number of requests for images that use Image Manager.",
            "label": "Edge Hits",
            "unit": "COUNT",
            "summaryStatistic": false
        },
        {
            "name": "edgeImageHitsPercent",
            "description": "The percentage of requests for the associated URL as compared to all requests.",
            "label": "Edge Hits Percent",
            "unit": "RATIO",
            "summaryStatistic": false
        },
        {
            "name": "totalEdgeImageBytes",
            "description": "Sum of all edge bytes seen during time range.",
            "label": "Total Edge Bytes",
            "unit": "BYTE",
            "summaryStatistic": true
        },
        {
            "name": "totalEdgeImageHits",
            "description": "Sum of all edge hits seen during time range.",
            "label": "Total Edge Hits",
            "unit": "COUNT",
            "summaryStatistic": true
        }
    ],
    "groupOutlyingValues": {
        "enabled": false
    },
    "groupBy": [
        "image_type",
        "browser_family"
    ],
    "filters": [
        {
            "name": "token_policy",
            "type": "string",
            "description": "The Image Manager policy for which you want data included. Policies are associated with their API tokens.",
            "required": false
        }
    ],
    "intervals": [
        "MONTH",
        "WEEK",
        "DAY"
    ],
    "dataRetentionDays": 92,
    "links": [
        {
            "rel": "self",
            "href": "/reporting-api/v1/reports/im-traffic-by-image-and-browser/versions/1"
        },
        {
            "rel": "versions",
            "href": "/reporting-api/v1/reports/im-traffic-by-image-and-browser/versions"
        },
        {
            "rel": "all-reports",
            "href": "/reporting-api/v1/reports"
        },
        {
            "rel": "execute-report",
            "href": "/reporting-api/v1/reports/im-traffic-by-image-and-browser/versions/1/report-data"
        }
    ]
}