Datasource client
The SDK provides a Datasource client to perform CRUD operations on datasources, also called option lists.
The client variable in the following code examples refers to the IMClient instance. When using the Web SDK, the variable name can be chosen freely, but it is also called client at instantiation in the documentation.
Get datasources
A datasource can be retrieved by name:
This returns an IDataSource object, however it is recommended to downcast it to the right type of datasource in the following way:
It is required to downcast the datasource to the correct type to be able to change the datasource's value. Note that the Type property on IDataSource can be used to identify the correct datasource type at runtime.
Create datasources
To create a hierarchical datasource, an instance needs be created by the factory first. Afterwards, the instance can be saved using the client. The datasource can be used for media types, where every type of media can have more sub-values.
In this example, 'mp4' is added as a subtype of a video media type.
Update datasources
In the following example, a flat colors datasource is extended with the color red:
Delete datasources
In the following example, the MediaType datasource is deleted: