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.6.308
Syntax public XHRServiceResponseGeneric<SiteDefinitionsLocalizationListItem[]> GetWorkflowDefinitions(
int page,
int pageSize
)
Public Function GetWorkflowDefinitions (
page As Integer,
pageSize As Integer
) As XHRServiceResponseGeneric(Of SiteDefinitionsLocalizationListItem())
public:
virtual XHRServiceResponseGeneric<array<SiteDefinitionsLocalizationListItem^>^>^ GetWorkflowDefinitions(
int page,
int pageSize
) sealed
abstract GetWorkflowDefinitions :
page : int *
pageSize : int -> XHRServiceResponseGeneric<SiteDefinitionsLocalizationListItem[]>
override GetWorkflowDefinitions :
page : int *
pageSize : int -> XHRServiceResponseGeneric<SiteDefinitionsLocalizationListItem[]>
Parameters
- page
- Type: SystemInt32
Page number in the paginated collection - pageSize
- Type: SystemInt32
Number of items per page in pagination
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