AssetServicesGetRelatedAssets Method
|
Retrieves the assets related to the asset of specified ID
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<RelatedAssetInfo[]> GetRelatedAssets(
string assetId
)
Public Function GetRelatedAssets (
assetId As String
) As XHRServiceResponseGeneric(Of RelatedAssetInfo())
public:
virtual XHRServiceResponseGeneric<array<RelatedAssetInfo^>^>^ GetRelatedAssets(
String^ assetId
) sealed
abstract GetRelatedAssets :
assetId : string -> XHRServiceResponseGeneric<RelatedAssetInfo[]>
override GetRelatedAssets :
assetId : string -> XHRServiceResponseGeneric<RelatedAssetInfo[]>
Parameters
- assetId
- Type: SystemString
Unique ID of the asset to retrieve related assets for
Return Value
Type:
XHRServiceResponseGenericRelatedAssetInfoInformation of related assets
Examples Sample JSON return
[
{
"name": "brock2",
"id": "a/9684",
"extension": ".jpg",
"friendly": "Image",
"height": 358,
"ratio": "test",
"type": "y",
"width": 418
},
{
"name": "brock3",
"id": "a/9685",
"extension": ".jpg",
"friendly": "Image",
"height": 358,
"ratio": "test",
"type": "y",
"width": 418
}
]
See Also