Click or drag to resize

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
)

Parameters

page
Type: SystemInt32
Page number in the paginated collection
pageSize
Type: SystemInt32
Number of items per page in pagination

Return Value

Type: XHRServiceResponseGenericSiteDefinitionsLocalizationListItem

Collection of localized or original basic information of Workflow Definitions

Examples
Sample JSON return
JavaScript
{
    "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