AssetServicesGetAssetFolderInfoForField Method
|
Retrieves basic information of an asset folder
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<AssetFieldInfo> GetAssetFolderInfoForField(
string assetFolderId
)
Public Function GetAssetFolderInfoForField (
assetFolderId As String
) As XHRServiceResponseGeneric(Of AssetFieldInfo)
public:
virtual XHRServiceResponseGeneric<AssetFieldInfo^>^ GetAssetFolderInfoForField(
String^ assetFolderId
) sealed
abstract GetAssetFolderInfoForField :
assetFolderId : string -> XHRServiceResponseGeneric<AssetFieldInfo>
override GetAssetFolderInfoForField :
assetFolderId : string -> XHRServiceResponseGeneric<AssetFieldInfo>
Parameters
- assetFolderId
- Type: SystemString
ID of the asset folder
Return Value
Type:
XHRServiceResponseGenericAssetFieldInfoBasic information of asset folder
Examples
Sample JSON return:
{
"name": "Images_3",
"id": "af/1",
"extension": null,
"hierarchy": null,
"mediaLength": null,
"originalHeight": 0,
"originalWidth": 0,
"path": "Images_3",
"schemaName": null,
"type": null
}
See Also