SiteDefinitionsLocalizationServicesGetWorkflowDefinitions Method
|
Retrieves all Workflow Definitions on the site. The name of each entry is localized name if localization exists
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<SiteDefinitionsLocalizationListItem[]> GetWorkflowDefinitions()
Public Function GetWorkflowDefinitions As XHRServiceResponseGeneric(Of SiteDefinitionsLocalizationListItem())
public:
virtual XHRServiceResponseGeneric<array<SiteDefinitionsLocalizationListItem^>^>^ GetWorkflowDefinitions() sealed
abstract GetWorkflowDefinitions : unit -> XHRServiceResponseGeneric<SiteDefinitionsLocalizationListItem[]>
override GetWorkflowDefinitions : unit -> XHRServiceResponseGeneric<SiteDefinitionsLocalizationListItem[]>
Return Value
Type:
XHRServiceResponseGenericSiteDefinitionsLocalizationListItemCollection of localized or original basic information of Workflow Definitions
Examples
Sample JSON return
{
"code": 0,
"error": null,
"message": [{
"ID": "WorkflowDefinitions\/2",
"Name": "Standard",
"isInComplete": true,
"isOutDated": true,
"isTranslated": false
}, {
"ID": "WorkflowDefinitions\/3",
"Name": "Paso a paso",
"isInComplete": false,
"isOutDated": false,
"isTranslated": true
}]
}
See Also