Welcome to the Digizuite C# SDK documentation. Here you will find documentation on how to use the sdk and some tips and tricks for interacting with the Digizuite in general.
Setup
To get started with the Digizuite SDK, you should first install the Digizuite packages from nuget.org https://www.nuget.org/packages/Digizuite.Sdk.
Additionally the SDK has to be initialized. If you are using dotnet, an extension method AddDigizuite
is provided. Use the extension method AddDigizuite
for inspiration.
A simple example of how the initialization code looks in a console application is as follows:
var serviceCollection = new ServiceCollection(); var config = new DigizuiteConfiguration() { BaseUrl = new Uri("https://<Digizuite url>.com/"), SystemUsername = "<Username>", SystemPassword = "<Password>" }; serviceCollection.AddDigizuite(config) .AddDigizuiteLogging() .AddConsoleSink(); serviceCollection.AddSingleton(typeof(ILogger<>), typeof(ConsoleLogger<>)); var serviceProvider = serviceCollection.BuildServiceProvider(true);
In the following we show how you can update the different metafield types on an asset.
BIT
Use the Digizuite serviceIAssetSearchService
andIMetadataValueService
.
First we fetch the asset. Then creates a new instance ofBitMetadataUpdate
. TheTargetItemIds
is the itemId of the asset we just fetched. TheMetaFieldItemGuid
is the GUID of the metafield you wants to update. As you can see in the ApplyUpdate, it takes a list of updates. So you have the options to bulk update metadata for an asset.var assetSearchService = app.Services.GetRequiredService<IAssetSearchService>(); var metadataValueService = app.Services.GetRequiredService<IMetadataValueService>(); var asset = await assetSearchService.GetAsset(75); var metadataUpdate = new BitMetadataUpdate { Value = true, TargetItemIds = new HashSet<int> { asset.ItemId }, MetaFieldItemGuid = Guid.Parse("<GUID of Metafield>") }; await metadataValueService.ApplyUpdate<MetadataUpdate>(new[] { metadataUpdate});
INT
Use the Digizuite serviceIAssetSearchService
andIMetadataValueService
.
First we fetch the asset. Then creates a new instance ofIntMetadataUpdate
. TheTargetItemIds
is the itemId of the asset we just fetched. TheMetaFieldItemGuid
is the GUID of the metafield you wants to update. As you can see in the ApplyUpdate, it takes a list of updates. So you have the options to bulk update metadata for an asset.var assetSearchService = app.Services.GetRequiredService<IAssetSearchService>(); var metadataValueService = app.Services.GetRequiredService<IMetadataValueService>(); var asset = await assetSearchService.GetAsset(75); var metadataUpdate = new IntMetadataUpdate { Value = 99, TargetItemIds = new HashSet<int> { asset.ItemId }, MetaFieldItemGuid = Guid.Parse("<GUID of Metafield>") }; await metadataValueService.ApplyUpdate<MetadataUpdate>(new[] { metadataUpdate});
STRING
Use the Digizuite serviceIAssetSearchService
andIMetadataValueService
.
First we fetch the asset. Then creates a new instance ofStringMetadataUpdate
. TheTargetItemIds
is the itemId of the asset we just fetched. TheMetaFieldItemGuid
is the GUID of the metafield you wants to update. As you can see in the ApplyUpdate, it takes a list of updates. So you have the options to bulk update metadata for an asset.var assetSearchService = app.Services.GetRequiredService<IAssetSearchService>(); var metadataValueService = app.Services.GetRequiredService<IMetadataValueService>(); var asset = await assetSearchService.GetAsset(75); var metadataUpdate = new StringMetadataUpdate { Value = "Update metafield string", TargetItemIds = new HashSet<int> { asset.ItemId }, MetaFieldItemGuid = Guid.Parse("<GUID of Metafield>") }; await metadataValueService.ApplyUpdate<MetadataUpdate>(new[] { metadataUpdate});
COMBOVALUE
Use the Digizuite serviceIAssetSearchService
andIMetadataValueService
.
First we fetch the asset. Then creates a new instance ofComboValueMetadataUpdate
. TheTargetItemIds
is the itemId of the asset we just fetched. TheMetaFieldItemGuid
is the GUID of the metafield you wants to update.
TheComboValue
can either be set to an existing combovalue or create an new combovalue.new ExistingCombo(50170)
ornew DynamicCombo { Label = "test" , OptionValue = "test" }
.
As you can see in the ApplyUpdate, it takes a list of updates. So you have the options to bulk update metadata for an asset.var assetSearchService = app.Services.GetRequiredService<IAssetSearchService>(); var metadataValueService = app.Services.GetRequiredService<IMetadataValueService>(); var asset = await assetSearchService.GetAsset(75); var metadataUpdate = new ComboValueMetadataUpdate { ComboValue = new ExistingCombo(50170), TargetItemIds = new HashSet<int> { asset.ItemId }, MetaFieldItemGuid = Guid.Parse("<GUID of Metafield>") }; await metadataValueService.ApplyUpdate<MetadataUpdate>(new[] { metadataUpdate});
MULTICOMBOVALUE
Use the Digizuite serviceIAssetSearchService
andIMetadataValueService
.
First we fetch the asset. Then creates a new instance ofMultiComboValueMetadataUpdate
. TheTargetItemIds
is the itemId of the asset we just fetched. TheMetaFieldItemGuid
is the GUID of the metafield you wants to update.
TheComboValues
can either be a set of existings combovalues or create an new combovalues.new ExistingCombo(50170)
ornew DynamicCombo { Label = "test" , OptionValue = "test" }
.
As you can see in the ApplyUpdate, it takes a list of updates. So you have the options to bulk update metadata for an asset.var assetSearchService = app.Services.GetRequiredService<IAssetSearchService>(); var metadataValueService = app.Services.GetRequiredService<IMetadataValueService>(); var asset = await assetSearchService.GetAsset(75); var metadataUpdate = new MultiComboValueMetadataUpdate { ComboValues = new List<BaseInputCombo> { new ExistingCombo(50175), new ExistingCombo(50174) }, TargetItemIds = new HashSet<int> { asset.ItemId }, MetaFieldItemGuid = Guid.Parse("<GUID of Metafield>") }; await metadataValueService.ApplyUpdate<MetadataUpdate>(new[] { metadataUpdate});
DATETIME
Use the Digizuite serviceIAssetSearchService
andIMetadataValueService
.
First we fetch the asset. Then creates a new instance ofDateTimeMetadataUpdate
. TheTargetItemIds
is the itemId of the asset we just fetched. TheMetaFieldItemGuid
is the GUID of the metafield you wants to update. As you can see in the ApplyUpdate, it takes a list of updates. So you have the options to bulk update metadata for an asset.var assetSearchService = app.Services.GetRequiredService<IAssetSearchService>(); var metadataValueService = app.Services.GetRequiredService<IMetadataValueService>(); var asset = await assetSearchService.GetAsset(75); var metadataUpdate = new DateTimeMetadataUpdate { Value = DateTime.Now, TargetItemIds = new HashSet<int> { asset.ItemId }, MetaFieldItemGuid = Guid.Parse("<GUID of Metafield>") }; await metadataValueService.ApplyUpdate<MetadataUpdate>(new[] { metadataUpdate});
TREE
Use the Digizuite serviceIAssetSearchService
andIMetadataValueService
.
First we fetch the asset. Then creates a new instance ofTreeMetadataUpdate
. TheTargetItemIds
is the itemId of the asset we just fetched. TheMetaFieldItemGuid
is the GUID of the metafield you wants to update.
TheTreeValues
can eather be a set of existingsExistingTreeNode
or create new treenodes by using theDynamicTopDownTreeNode
.
As you can see in the ApplyUpdate, it takes a list of updates. So you have the options to bulk update metadata for an asset.var assetSearchService = app.Services.GetRequiredService<IAssetSearchService>(); var metadataValueService = app.Services.GetRequiredService<IMetadataValueService>(); var asset = await assetSearchService.GetAsset(75); var metadataUpdate = new TreeMetadataUpdate { TreeValues = new ValueList<BaseTreeNodeUpdate> { new ExistingTreeNode(2) }, TargetItemIds = new HashSet<int> { asset.ItemId }, MetaFieldItemGuid = Guid.Parse("<GUID of Metafield>") }; await metadataValueService.ApplyUpdate<MetadataUpdate>(new[] { metadataUpdate});
EDITCOMBOVALUE
Use the Digizuite serviceIAssetSearchService
andIMetadataValueService
.
First we fetch the asset. Then creates a new instance ofEditComboValueMetadataUpdate
. TheTargetItemIds
is the itemId of the asset we just fetched. TheMetaFieldItemGuid
is the GUID of the metafield you wants to update. As you can see in the ApplyUpdate, it takes a list of updates. So you have the options to bulk update metadata for an asset.var assetSearchService = app.Services.GetRequiredService<IAssetSearchService>(); var metadataValueService = app.Services.GetRequiredService<IMetadataValueService>(); var asset = await assetSearchService.GetAsset(75); var metadataUpdate = new EditComboValueMetadataUpdate { ComboValue = "Test edit value", TargetItemIds = new HashSet<int> { asset.ItemId }, MetaFieldItemGuid = Guid.Parse("<GUID of Metafield>") }; await metadataValueService.ApplyUpdate<MetadataUpdate>(new[] { metadataUpdate});
EDITMULTICOMBOVALUE
Use the Digizuite serviceIAssetSearchService
andIMetadataValueService
.
First we fetch the asset. Then creates a new instance ofEditMultiComboValueMetadataUpdate
. TheTargetItemIds
is the itemId of the asset we just fetched. TheMetaFieldItemGuid
is the GUID of the metafield you wants to update. As you can see in the ApplyUpdate, it takes a list of updates. So you have the options to bulk update metadata for an asset.var assetSearchService = app.Services.GetRequiredService<IAssetSearchService>(); var metadataValueService = app.Services.GetRequiredService<IMetadataValueService>(); var asset = await assetSearchService.GetAsset(75); var metadataUpdate = new EditMultiComboValueMetadataUpdate { ComboValues = new HashSet<string> { "test 3", "demo" }, TargetItemIds = new HashSet<int> { asset.ItemId }, MetaFieldItemGuid = Guid.Parse("<GUID of Metafield>") }; await metadataValueService.ApplyUpdate<MetadataUpdate>(new[] { metadataUpdate});