Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Digizuite DAM integration service provides an API where integration endpoints can register for notifications regarding asset and metadata changes. We have made it easy to setup the connection between Sitecore and Digizuite. You registrer an url and your Sitecore instance will receive notifications from Digizuite whenever an asset changes. In Sitecore we have created a new controller, which is located at the following route [siteUrl]/damforsitecore/silo/update. This is the endpoint that receives notifications from Digizuite. An important thing to note here is, that the endpoint should must be reachable by the Digizuite server. Otherwise, the notifications won't be sent. This is usually the case for developers on local environments.

...

Code Block
public class UpdateNotification
{ 
    public ChangeTypeList<ChangeData> ChangeTypeData { get; set; }
}
    
public class ChangeData
Data {
get; set; } } public ChangeType ChangeType { get; publicset; class}
ChangeData {   public int ItemId { get; set; }
    public int BaseId { get; set; }
}

...