v1

latestOpenAPI 3.1.02026-07-2419782400.4 KB
Reporting

Retrieve asset reports

This endpoint allows you to retrieve a human readable report of any of the assets in the DAM. The report will include all the metadata of the asset.

get/v7/analytics/api/v1/report/asset

Query parameters

limitinteger

The maximum number of asset reports to retrieve. Allowed values are between 1 and 10000.

cursorstring

Cursor mark returned in the response headers to be used for pagination purposes.

fromDateCreatedstring date-time

Retrieve reports of assets created after this date. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.

toDateCreatedstring date-time

Set a date range together with the "fromDateCreated" parameter. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.

fromDateModifiedstring date-time

Retrieve reports of assets modified after this date. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.

toDateModifiedstring date-time

Set a date range together with the "fromDateModified" parameter. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.

Response

Successful response

assetIdstring
namestring
descriptionstring
isArchivedboolean
typestring
auditstring
copyrightstring
isLimitedboolean
datePublishedstring date-time
isRemovedboolean
dateRemovedstring date-time
idHashstring
phashstring
userCreatedstring
dateCreatedstring date-time
userModifiedstring
dateModifiedstring date-time
isWatermarkedboolean
isPublicboolean
metapropertiesobject

Example response

[
  {
    "assetId": "3DF53D46-4E72-47A0-A42ECC22CDE211D5",
    "name": "Asset 1",
    "description": "Asset Description",
    "type": "image",
    "audit": "ACCEPTED",
    "datePublished": "2016-12-29T10:39:52.000+00:00",
    "isRemoved": true,
    "dateRemoved": "2019-01-04T13:19:47.000+00:00",
    "idHash": "6bb400d042cfe865",
    "phash": "56033317620",
    "userCreated": "00000000-0000-0000-0000000000000000",
    "dateCreated": "2018-12-21T13:11:46.000+00:00",
    "userModified": "00000000-0000-0000-0000000000000000",
    "dateModified": "2019-01-04T13:19:47.000+00:00",
    "metaproperties": {
      "metaproperty_1": "option3",
      "metaproperty_2": "option2, option1",
      "metaproperty_3": ""
    }
  }
]