Getting started

Integration & migration

Image & video API

DAM user guide

API overview

Account

Asset history and audit logs

Get an overview of changes in the ImageKit DAM. Filter out specific events or dive deep into asset-level change history.


Enterprise plan only
This feature is only available in custom enterprise pricing plans. If your plan has central audit logs enabled, then this feature is also available.

ImageKit provides audit logs for all edit (update and delete) operations performed on DAM assets (files, folders, and media collections).

These logs can be helpful for organization administrators and auditors to diagnose and troubleshoot various issues, like misconfigurations, suspicious activities, etc.

Audit logs will be saved for these features:

  • Sharing assets.
  • Renaming assets.
  • Updating custom metadata for assets.
  • Using extensions like background removal.
  • Adding, updating or removing public links for assets.
  • Moving assets.
  • Deleting assets.
  • Adding & removing tags or auto-tags for a file.
  • Creating, Restoring, or Deleting a file version.
  • Adding or removing assets from a media collection.
  • Using draft assets.

Audit logs page

If you're an administrator, you can access the DAM audit logs from the user menu in the screen's bottom left corner.

Here, you can view all the logs in the table and the associated request and response details, such as method, endpoint, etc.

You can also filter these logs based on:

  • Operations (like adding tags, renaming an asset, deleting an asset, adding public links, and so on).
  • Users (to view the entire history of their actions in the media library).
  • Asset Path (e.g.: /forest/tree.png).
  • Request ID (sent back in the HTTP response headers for API requests to ImageKit).
  • Time Interval.

View File Deletion History

Using the asset path, you can easily track when a file was deleted and view its historical changes.

You can combine the available filters to customize your search in the DAM audit logs.

Asset History

All users with view access to the Media Library can see the historical changes to each file, folder, or media collection.

For folders and media collections, you can select the asset and open "Folder details" or "Media collection details" respectively to show their history.

DAM Events

In addition to the audit log, you can also choose to receive audit events as webhooks to stay updated in real-time.

The events are listed as below:

File Operations

  • dam.file.create
  • dam.file.update
  • dam.file.rename
  • dam.file.copy
  • dam.file.move
  • dam.file.delete
  • dam.file.add_tags
  • dam.file.remove_tags
  • dam.file.add_ai_tags
  • dam.file.remove_ai_tags
  • dam.file.apply_extension
  • dam.file.change_publish_status

dam.file.create

Copy
{
  "type": "dam.file.create",
  "id": "766ba6ee-c5e8-45bf-a716-7bf3b8e5e324",
  "created_at": "2024-12-11T20:21:58.301Z",
  "request": {
    "x_request_id": "c404b7a8-a663-40c0-b61a-4e2c1a4f874c",
    "http_method": "POST",
    "endpoint": "/api/v2/files/upload",
    "body": {
      "fileName": "Screenshot 2024-09-02 PM.png",
      "file": "(File buffer)"
    }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "6759f4667d912a3d26145abd",
      "name": "Screenshot 2024-09-02 PM.png",
      "path": "/Screenshot 2024-09-02 PM.png"
    }
  },
  "timestamp": 1731536607200
}

dam.file.update

Copy
{
  "type": "dam.file.update",
  "id": "a7f23b6e-cf33-41f4-9b75-de208b17a38f",
  "created_at": "2024-11-13T22:23:27.354Z",
  "request": {
    "x_request_id": "b3e50d6a-f6d6-4e45-af61-3a18bf5f133e",
    "http_method": "PATCH",
    "endpoint": "/api/v2/files/66d578de65cf2a8150813c70/details",
    "body": { "customMetadata": { "Location": "Africa" } }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "66d578de65cf2a8150813c70",
      "details": {
        "newState": {
          "customMetadata": [{ "key": "Location", "value": "Africa" }]
        },
        "prevState": { "customMetadata": [] }
      },
      "name": "Screenshot 2024-09-02 PM.png",
      "path": "/Screenshot 2024-09-02 PM.png"
    },
    "timestamp": 1731536607316
  }
}

dam.file.rename

Copy
{
  "type": "dam.file.rename",
  "id": "b6e52656-8dd0-4512-b11c-a740ccf1d293",
  "created_at": "2024-11-13T22:12:05.659Z",
  "request": {
    "x_request_id": "c6d3a9fe-6040-46f0-b950-d6bf3b6ea7f0",
    "http_method": "PUT",
    "endpoint": "/api/v2/files/rename/",
    "body": {
      "filePath": "/Screenshot 2024-09-02 at 2.04.34 PM.png",
      "newFileName": "Screenshot 2024-09-02 PM.png",
      "purgeCache": false
    }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "66d578de65cf2a8150813c70",
      "details": {
        "prevState": "Screenshot 2024-09-02 at 2.04.34 PM.png",
        "newState": "Screenshot 2024-09-02 PM.png"
      },
      "name": "Screenshot 2024-09-02 at 2.04.34 PM.png",
      "path": "/Screenshot 2024-09-02 at 2.04.34 PM.png"
    },
    "timestamp": 1731535925646
  }
}

dam.file.copy

Copy
{
  "type": "dam.file.copy",
  "id": "d9f8d83b-1abb-4f08-9767-515bf773fa6f",
  "created_at": "2025-03-22T12:36:17.071Z",
  "request": {
    "x_request_id": "c9fdd4f3-297d-42b5-95ea-f4d7252a1cc5",
    "http_method": "POST",
    "endpoint": "/api/v2/files/copy",
    "body": {
      "sourceFilePath": "/philip-oroni-v0PnusRa6aM-unsplash.heif",
      "destinationPath": "/random",
      "includeFileVersions": false
    }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "671fd5c19af5a475e94dd8e5",
      "details": {
        "info": {
          "copiedTo": {
            "id": "67deaec1a9725c26588e2fc0",
            "path": "/random/philip-oroni-v0PnusRa6aM-unsplash.heif"
          }
        }
      },
      "name": "philip-oroni-v0PnusRa6aM-unsplash.heif",
      "path": "/philip-oroni-v0PnusRa6aM-unsplash.heif"
    },
    "timestamp": 1742646977065
  }
}

dam.file.move

Copy
{
  "type": "dam.file.move",
  "id": "48c5cb27-6538-4961-9f2e-829b10919199",
  "created_at": "2025-03-22T12:37:02.748Z",
  "request": {
    "x_request_id": "e9d602d7-0566-444c-80ca-f4f6b191049f",
    "http_method": "POST",
    "endpoint": "/api/v2/files/move",
    "body": {
      "sourceFilePath": "/sample_mov.mov",
      "destinationPath": "/random/somedir"
    }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "66befd2065cf2a815070ab40",
      "details": {
        "info": {
          "movedTo": {
            "id": "67deaeeea9725c26588e302a",
            "path": "/random/somedir/sample_mov.mov"
          }
        }
      },
      "name": "sample_mov.mov",
      "path": "/sample_mov.mov"
    },
    "timestamp": 1742647022734
  }
}

dam.file.delete

Copy
{
  "type": "dam.file.delete",
  "id": "2a67bfb0-af02-414b-91ea-2007d39ef9da",
  "created_at": "2024-11-13T21:50:36.466Z",
  "request": {
    "x_request_id": "81cbd5c0-4188-42ba-91c9-3250f34736d8",
    "http_method": "POST",
    "endpoint": "/api/v2/files/batch/deleteByFileIds",
    "body": { "fileIds": ["67065bc85190fe21ee9c7959"] }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "67065bc85190fe21ee9c7959",
      "name": "ElephantsDream.mp4",
      "path": "/ElephantsDream.mp4"
    },
    "timestamp": 1731534636417
  }
}

dam.file.add_tags

Copy
{
  "type": "dam.file.add_tags",
  "id": "ccd6473c-3817-4305-b1f8-6b59eb126dda",
  "created_at": "2024-11-13T22:06:50.528Z",
  "request": {
    "x_request_id": "f2613447-d64a-4204-9256-d03b31d12d06",
    "http_method": "PATCH",
    "endpoint": "/api/v2/files/66d578de65cf2a8150813c70/details",
    "body": { "tags": ["hd", "nature"] }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "66d578de65cf2a8150813c70",
      "details": { "prevState": [], "newState": ["hd", "nature"] },
      "name": "Screenshot 2024-09-02 at 2.04.34 PM.png",
      "path": "/Screenshot 2024-09-02 at 2.04.34 PM.png"
    },
    "timestamp": 1731535610512
  }
}

dam.file.remove_tags

Copy
{
  "type": "dam.file.remove_tags",
  "id": "8b1f8b63-920a-4c2b-8a96-5369b9501999",
  "created_at": "2024-11-13T22:06:58.504Z",
  "request": {
    "x_request_id": "c92fb4e1-c00e-4df9-8178-6822429bb03c",
    "http_method": "PATCH",
    "endpoint": "/api/v2/files/66d578de65cf2a8150813c70/details",
    "body": { "tags": ["nature"] }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "66d578de65cf2a8150813c70",
      "details": { "prevState": ["hd", "nature"], "newState": ["nature"] },
      "name": "Screenshot 2024-09-02 at 2.04.34 PM.png",
      "path": "/Screenshot 2024-09-02 at 2.04.34 PM.png"
    },
    "timestamp": 1731535618484
  }
}

dam.file.add_ai_tags

Copy
{
  "type": "dam.file.add_ai_tags",
  "id": "eae4c6f8-3e1c-4488-aa57-d7824e8d2a0b",
  "created_at": "2024-11-13T22:07:11.116Z",
  "request": {
    "x_request_id": "37754cbe-9ab6-4e2f-a063-f757b8404142",
    "http_method": "PATCH",
    "endpoint": "/api/v2/files/66d578de65cf2a8150813c70/details",
    "body": {
      "extensions": [
        { "name": "aws-auto-tagging", "maxTags": 5, "minConfidence": 70 },
        { "name": "google-auto-tagging", "maxTags": 5, "minConfidence": 70 }
      ]
    }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "66d578de65cf2a8150813c70",
      "details": {
        "prevState": [
          { "name": "Font", "source": "google-auto-tagging" },
          { "name": "Parallel", "source": "google-auto-tagging" },
          { "name": "Rectangle", "source": "google-auto-tagging" }
        ],
        "newState": [
          { "name": "Font", "source": "google-auto-tagging" },
          { "name": "Parallel", "source": "google-auto-tagging" },
          { "name": "Rectangle", "source": "google-auto-tagging" },
          { "name": "Page", "source": "aws-auto-tagging" },
          { "name": "Text", "source": "aws-auto-tagging" },
          { "name": "File", "source": "aws-auto-tagging" }
        ],
        "info": { "service": "aws-auto-tagging" }
      },
      "name": "Screenshot 2024-09-02 at 2.04.34 PM.png",
      "path": "/Screenshot 2024-09-02 at 2.04.34 PM.png"
    },
    "timestamp": 1731535631085
  }
}

dam.file.remove_ai_tags

Copy
{
  "type": "dam.file.remove_ai_tags",
  "id": "33048aca-fa43-4315-97e9-6da19e4f8ef3",
  "created_at": "2024-11-13T22:07:34.252Z",
  "request": {
    "x_request_id": "dd60da1d-dee8-4949-a067-7cb06daae6b4",
    "http_method": "POST",
    "endpoint": "/api/v2/files/removeAITags",
    "body": { "fileIds": ["66d578de65cf2a8150813c70"], "AITags": ["Font"] }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "66d578de65cf2a8150813c70",
      "details": {
        "prevState": [
          { "name": "Font", "source": "google-auto-tagging" },
          { "name": "Parallel", "source": "google-auto-tagging" },
          { "name": "Rectangle", "source": "google-auto-tagging" },
          { "name": "Page", "source": "aws-auto-tagging" },
          { "name": "Text", "source": "aws-auto-tagging" },
          { "name": "File", "source": "aws-auto-tagging" }
        ],
        "newState": [
          { "name": "Parallel", "source": "google-auto-tagging" },
          { "name": "Rectangle", "source": "google-auto-tagging" },
          { "name": "Page", "source": "aws-auto-tagging" },
          { "name": "Text", "source": "aws-auto-tagging" },
          { "name": "File", "source": "aws-auto-tagging" }
        ]
      },
      "name": "Screenshot 2024-09-02 at 2.04.34 PM.png",
      "path": "/Screenshot 2024-09-02 at 2.04.34 PM.png"
    },
    "timestamp": 1731535654234
  }
}

dam.file.apply_extension

Copy
{
  "type": "dam.file.apply_extension",
  "id": "ae304d7a-672c-4c95-99b5-d3ec7f31e7be",
  "created_at": "2024-11-13T22:08:46.151Z",
  "request": {
    "x_request_id": "67c5bf13-e316-4301-b1ea-cf174e454c16",
    "http_method": "PATCH",
    "endpoint": "/api/v2/files/660d69b7ce495bcdc036974c/details",
    "body": { "extensions": [{ "name": "remove-bg" }] }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "660d69b7ce495bcdc036974c",
      "details": { "info": { "service": "remove-bg" } },
      "name": "philip-oronuplash.jpg",
      "path": "/philip-oronuplash.jpg"
    },
    "timestamp": 1731535726132
  }
}

dam.file.change_publish_status

Copy
{
  "type": "dam.file.change_publish_status",
  "id": "3ac6c820-023b-488f-94ce-e3d45cdf51d8",
  "created_at": "2024-11-13T22:17:44.181Z",
  "request": {
    "x_request_id": "af1ec9e3-f16f-46a5-aff8-cc45d21269fd",
    "http_method": "PUT",
    "endpoint": "/api/v2/files/publish/",
    "body": {
      "fileIds": ["66d578de65cf2a8150813c70"],
      "publish": false,
      "includeFileVersions": false
    }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "66d578de65cf2a8150813c70",
      "details": {
        "info": { "jobId": "6735257a5d2067d5bb68b003", "publish": false }
      },
      "name": "Screenshot 2024-09-02 PM.png",
      "path": "/Screenshot 2024-09-02 PM.png"
    },
    "timestamp": 1731536264149
  }
}

Folder Operations

  • dam.folder.create
  • dam.folder.update
  • dam.folder.copy
  • dam.folder.move
  • dam.folder.delete

dam.folder.create

Copy
{
  "type": "dam.folder.create",
  "id": "c7a4a8fc-1850-41c9-810d-720e386c8360",
  "created_at": "2025-03-22T12:38:14.215Z",
  "request": {
    "x_request_id": "1f78bb40-34d2-4ef9-9ecb-b1da697144f4",
    "http_method": "POST",
    "endpoint": "/api/v2/folder",
    "body": { "folderName": "New Folder 3", "parentFolderPath": "/" }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "67deaf36144eb522315fd284",
      "name": "New Folder 3",
      "path": "/New Folder 3/New Folder 3"
    },
    "timestamp": 1742647094203
  }
}

dam.folder.update

Copy
{
  "type": "dam.folder.update",
  "id": "4013eb91-11c5-421d-b438-d92a1725dedf",
  "created_at": "2024-11-13T23:18:00.326Z",
  "request": {
    "x_request_id": "4b2605f9-bf7a-4ba8-a890-554e77cce804",
    "http_method": "PATCH",
    "endpoint": "/api/v2/folder/details?folderId=673533795408e3939db67163",
    "body": { "customMetadata": { "Location": "Africa" } }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "673533795408e3939db67163",
      "details": {
        "prevState": { "customMetadata": [] },
        "newState": {
          "customMetadata": [{ "key": "Location", "value": "Africa" }]
        }
      },
      "path": "/Marketing/Some Folder"
    },
    "timestamp": 1731539880307
  }
}

dam.folder.copy

Copy
{
  "type": "dam.folder.copy",
  "id": "5a6918f3-0a39-479f-a138-5b445ce98054",
  "created_at": "2025-03-22T12:41:10.162Z",
  "request": {
    "x_request_id": "d07aba09-80aa-4cd3-9ab0-c5d40680747e",
    "http_method": "POST",
    "endpoint": "/api/v2/bulkJobs/copyFolder",
    "body": {
      "sourceFolderPath": "/New Folder 3",
      "destinationPath": "/random/somedir",
      "includeFileVersions": false
    }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "67deaf36144eb522315fd284",
      "details": {
        "info": {
          "copiedTo": { "path": "/random/somedir/New Folder 3" },
          "filesCount": 0
        }
      },
      "name": "New Folder 3",
      "path": "/New Folder 3"
    },
    "timestamp": 1742647270157
  }
}

dam.folder.move

Copy
{
  "type": "dam.folder.move",
  "id": "3289f001-9479-4953-a4b0-ec9d4eb1e2c0",
  "created_at": "2025-03-22T12:41:43.262Z",
  "request": {
    "x_request_id": "526e49a7-7b7c-44cb-9059-bafb065058ad",
    "http_method": "POST",
    "endpoint": "/api/v2/bulkJobs/moveFolder",
    "body": {
      "sourceFolderPath": "/random/somedir/New Folder 3",
      "destinationPath": "/"
    }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "67deafe6144eb522315fd8f9",
      "details": {
        "info": { "movedTo": { "path": "/New Folder 3" }, "filesCount": 0 }
      },
      "name": "New Folder 3",
      "path": "/random/somedir/New Folder 3"
    },
    "timestamp": 1742647303248
  }
}

dam.folder.delete

Copy
{
  "type": "dam.folder.delete",
  "id": "21c0249c-c060-4e89-a4b6-ceea00cac476",
  "created_at": "2024-11-13T23:18:27.271Z",
  "request": {
    "x_request_id": "1ac33ce9-a5fe-41a4-a1d4-655052aaef46",
    "http_method": "DELETE",
    "endpoint": "/api/v2/folder/",
    "body": { "folderPath": "/Marketing/Some Folder" }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "673533795408e3939db67163",
      "name": "Some Folder",
      "path": "/Marketing/Some Folder"
    },
    "timestamp": 1731539907244
  }
}

Media Collection Operations

  • dam.media-collection.create
  • dam.media-collection.add_assets
  • dam.media-collection.remove_assets
  • dam.media-collection.rename
  • dam.media-collection.update
  • dam.media-collection.delete

dam.media-collection.create

Copy
{
  "type": "dam.media-collection.create",
  "id": "988b1e52-673d-4ac5-9b7d-fe1f41ec9f05",
  "created_at": "2025-03-22T13:05:55.894Z",
  "request": {
    "x_request_id": "c5e4b74e-b125-4b80-8c18-756494def33a",
    "http_method": "POST",
    "endpoint": "/api/v2/media-collections",
    "body": { "name": "Collection 5", "customMetadata": {} }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": { "id": "67deb5b3a9725c26588e33ca", "name": "Collection 5" },
    "timestamp": 1742648755891
  }
}

dam.media-collection.add_assets

Copy
{
  "type": "dam.media-collection.add_assets",
  "id": "3b4d858d-141a-4100-9439-f7afb84049ac",
  "created_at": "2024-11-13T23:23:03.137Z",
  "request": {
    "x_request_id": "a6c7b41d-c71e-449b-9c25-fea49195199e",
    "http_method": "POST",
    "endpoint": "/api/v2/media-collections/add-assets",
    "body": {
      "mediaCollectionIds": ["65b8da63990909a3ff08a115"],
      "assetIds": ["66befd2065cf2a815070ab40", "66bca52d0312bfd93183647a"]
    }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "65b8da63990909a3ff08a115",
      "details": {
        "info": [
          {
            "id": "66bca52d0312bfd93183647a",
            "type": "file",
            "path": "/output.mp4"
          },
          {
            "id": "66befd2065cf2a815070ab40",
            "type": "file",
            "path": "/sample_mov.mov"
          }
        ]
      },
      "name": "Collection"
    },
    "timestamp": 1731540183120
  }
}

dam.media-collection.remove_assets

Copy
{
  "type": "dam.media-collection.remove_assets",
  "id": "57e1a6e6-1856-4600-9166-2c6deb0fc075",
  "created_at": "2024-11-13T23:23:14.127Z",
  "request": {
    "x_request_id": "c951a08c-410a-4239-b79c-f429c9566f60",
    "http_method": "POST",
    "endpoint": "/api/v2/media-collections/remove-assets",
    "body": {
      "mediaCollectionIds": ["65b8da63990909a3ff08a115"],
      "assetIds": ["66bca52d0312bfd93183647a"]
    }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "65b8da63990909a3ff08a115",
      "details": {
        "info": [
          {
            "id": "66bca52d0312bfd93183647a",
            "type": "file",
            "path": "/output.mp4"
          }
        ]
      },
      "name": "Collection"
    },
    "timestamp": 1731540194117
  }
}

dam.media-collection.rename

Copy
{
  "type": "dam.media-collection.rename",
  "id": "802e85e4-f641-4c07-ac03-40f01f2d2d30",
  "created_at": "2024-11-13T23:25:22.016Z",
  "request": {
    "x_request_id": "668165a5-8b65-4f62-be1f-e78a0ba69319",
    "http_method": "PATCH",
    "endpoint": "/api/v2/media-collections/6564f7210dfeb163d6337de1",
    "body": { "name": "Collection6" }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "6564f7210dfeb163d6337de1",
      "details": { "prevState": "Collection2", "newState": "Collection6" },
      "name": "Collection6"
    },
    "timestamp": 1731540322003
  }
}

dam.media-collection.delete

Copy
{
  "type": "dam.media-collection.delete",
  "id": "bb79d0cd-a5fd-4752-9431-5a34356d9f58",
  "created_at": "2024-11-13T23:23:22.552Z",
  "request": {
    "x_request_id": "cd279262-043f-4534-9c37-76e7d6846701",
    "http_method": "DELETE",
    "endpoint": "/api/v2/media-collections/65b8da63990909a3ff08a115",
    "body": {}
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": { "id": "65b8da63990909a3ff08a115", "name": "Collection" },
    "timestamp": 1731540202541
  }
}

File Version Operations

  • dam.file.create_version
  • dam.file.version_restore
  • dam.file.version_delete

dam.file.create_version

Copy
{
  "type": "dam.file.create_version",
  "id": "c1422092-8b0d-4aff-ae97-e1b223559ee5",
  "created_at": "2024-11-13T23:35:28.872Z",
  "request": {
    "x_request_id": "ea6b5e3d-c0c7-4599-a7a9-dcd8c72338f1",
    "http_method": "PUT",
    "endpoint": "/api/v2/files/671fd5c19af5a475e94dd8e5/versions/673537a8a9833a626dfd44fc/restore",
    "body": {}
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "671fd5c19af5a475e94dd8e5",
      "details": {
        "info": {
          "id": "673537c05d2067d5bb68bd19",
          "name": "Version 3",
          "reason": "Restore",
          "versionsCreated": 1
        }
      },
      "name": "philip-oroni-v0PnusRa6aM-unsplash.heif",
      "path": "/philip-oroni-v0PnusRa6aM-unsplash.heif"
    },
    "timestamp": 1731540928763
  }
}

dam.file.version_restore

Copy
{
  "type": "dam.file.version_restore",
  "id": "0f0928cd-5bbf-4f28-8d79-bf8071df3eef",
  "created_at": "2024-11-13T23:35:28.872Z",
  "request": {
    "x_request_id": "ea6b5e3d-c0c7-4599-a7a9-dcd8c72338f1",
    "http_method": "PUT",
    "endpoint": "/api/v2/files/671fd5c19af5a475e94dd8e5/versions/673537a8a9833a626dfd44fc/restore",
    "body": {}
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "671fd5c19af5a475e94dd8e5",
      "details": {
        "info": { "id": "673537a8a9833a626dfd44fc", "name": "Version 2" }
      },
      "name": "philip-oroni-v0PnusRa6aM-unsplash.heif",
      "path": "/philip-oroni-v0PnusRa6aM-unsplash.heif"
    },
    "timestamp": 1731540928858
  }
}

dam.file.version_delete

Copy
{
  "type": "dam.file.version_delete",
  "id": "3b455d7c-a98a-40fa-af3a-37bba0dcfc7e",
  "created_at": "2024-11-13T23:35:39.676Z",
  "request": {
    "x_request_id": "b943f13c-95e7-4f43-9ade-20dc9f3d1569",
    "http_method": "DELETE",
    "endpoint": "/api/v2/files/671fd5c19af5a475e94dd8e5/versions/673537a8a9833a626dfd44fc",
    "body": {}
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "671fd5c19af5a475e94dd8e5",
      "details": {
        "info": { "id": "673537a8a9833a626dfd44fc", "name": "Version 2" }
      },
      "name": "philip-oroni-v0PnusRa6aM-unsplash.heif",
      "path": "/philip-oroni-v0PnusRa6aM-unsplash.heif"
    },
    "timestamp": 1731540939646
  }
}

Common

  • dam.change_access_control
  • dam.add_public_link
  • dam.update_public_link
  • dam.delete_public_link

dam.change_access_control

Copy
{
  "type": "dam.change_access_control",
  "id": "b88b246a-cc1f-4f63-a00f-20e0035dedbe",
  "created_at": "2024-11-13T23:32:43.923Z",
  "request": {
    "x_request_id": "0aa467b0-6b6e-4ab8-abbe-b7c5b29ee93e",
    "http_method": "PATCH",
    "endpoint": "/api/v2/media-collections/65e5a9f520c4d38bea177ed5",
    "body": {
      "acl": {
        "addOrModify": [
          {
            "entity": { "id": "65c247539482bd16870eac65", "type": "USER" },
            "permission": "CONTRIBUTE"
          }
        ],
        "remove": []
      }
    }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "65e5a9f520c4d38bea177ed5",
      "details": {
        "info": [
          {
            "id": "65c247539482bd16870eac65",
            "type": "USER",
            "permission": "CONTRIBUTE",
            "name": "Kunal Test"
          }
        ]
      },
      "name": "TestOld"
    },
    "timestamp": 1731540763905
  }
}
Copy
{
  "type": "dam.add_public_link",
  "id": "eb97879e-c5b2-4227-8067-7a6f9819f0ba",
  "created_at": "2024-11-13T23:19:47.394Z",
  "request": {
    "x_request_id": "ba92c607-5be8-4a70-a3df-c6bc78d5f375",
    "http_method": "POST",
    "endpoint": "/api/media-library/IPE4gXREk/assets/66befd2065cf2a815070ab40/public-links/",
    "body": { "password": "********" }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "66befd2065cf2a815070ab40",
      "type": "file",
      "details": {
        "info": {
          "exposeDraftAssets": false,
          "publicURL": "https://ik.imagekit.io/public/share/fdtyuv2n5/d96332ca082b62cf4c9ad22c1659500ef628ddaea91e2fdb395a654154b86cf82eb7cbf67fe128ea4cecae748bab6746788fd284b037107e0d68fd5fb35389de1b7ea2f523352705ff53566499c4c683",
          "password": true
        }
      },
      "name": "sample_mov.mov",
      "path": "/sample_mov.mov"
    },
    "timestamp": 1731539987382
  }
}
Copy
{
  "type": "dam.update_public_link",
  "id": "07588d48-04cf-438e-a606-8b266f20226d",
  "created_at": "2024-11-13T23:19:56.404Z",
  "request": {
    "x_request_id": "4f4c38e2-2a6e-4d4a-bd73-3a901cd87d9b",
    "http_method": "PUT",
    "endpoint": "/api/media-library/IPE4gXREk/assets/66befd2065cf2a815070ab40/public-links/673534135d2067d5bb68b6da",
    "body": {
      "validFrom": "2024-11-14T18:30:00.000Z",
      "validTill": "2024-11-22T18:29:59.999Z",
      "password": "********",
      "exposeDraftAssets": false
    }
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "66befd2065cf2a815070ab40",
      "type": "file",
      "details": {
        "info": {
          "exposeDraftAssets": false,
          "publicURL": "https://ik.imagekit.io/public/share/fdtyuv2n5/d96332ca082b62cf4c9ad22c1659500ef628ddaea91e2fdb395a654154b86cf82eb7cbf67fe128ea4cecae748bab6746788fd284b037107e0d68fd5fb35389de1b7ea2f523352705ff53566499c4c683",
          "validTill": "2024-11-22T18:29:59.999Z",
          "validFrom": "2024-11-14T18:30:00.000Z",
          "password": true
        }
      },
      "name": "sample_mov.mov",
      "path": "/sample_mov.mov"
    },
    "timestamp": 1731539996386
  }
}
Copy
{
  "type": "dam.delete_public_link",
  "id": "68666cc7-b74f-478a-93dc-28012204a013",
  "created_at": "2024-11-13T23:19:59.727Z",
  "request": {
    "x_request_id": "4da85e08-85e8-41c6-aecd-a0047ffc771b",
    "http_method": "DELETE",
    "endpoint": "/api/media-library/IPE4gXREk/assets/66befd2065cf2a815070ab40/public-links/673534135d2067d5bb68b6da",
    "body": {}
  },
  "data": {
    "user": {
      "id": "6504409b04407916805fc67f",
      "name": "Aaron",
      "email": "aaron@example.com",
      "public_key": "public_***************",
      "ip_address": "142.250.183.14"
    },
    "entity": {
      "id": "66befd2065cf2a815070ab40",
      "type": "file",
      "details": {
        "info": {
          "publicURL": "https://ik.imagekit.io/public/share/fdtyuv2n5/d96332ca082b62cf4c9ad22c1659500ef628ddaea91e2fdb395a654154b86cf82eb7cbf67fe128ea4cecae748bab6746788fd284b037107e0d68fd5fb35389de1b7ea2f523352705ff53566499c4c683"
        }
      },
      "name": "sample_mov.mov",
      "path": "/sample_mov.mov"
    },
    "timestamp": 1731539999710
  }
}

Note:

The name & email fields in data.user will only be present for requests made through the dashboard & not for requests made directly through the ImageKit API.