SiteDefinitionsLocalizationServicesGetWorkflowDefinitions Method
|
Retrieves all Workflow Definitions on the site. The name of each entry is localized name if localization exists
Namespace: IngeniuxCMServiceAssembly: IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.6.492
Syntaxpublic 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 Int32
- Page number in the paginated collection
- pageSize Int32
- Number of items per page in pagination
Return Value
XHRServiceResponseGenericSiteDefinitionsLocalizationListItemCollection of localized or original basic information of Workflow Definitions
Example
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