Click or drag to resize

PageCreationRulesAdminServicesGetRule Method


Retrieves a single Page Creation Rule via its unique Id, providing full details of the Rule.

Namespace:  IngeniuxCMService
Assembly:  IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.3.169
Syntax
public XHRServiceResponseGeneric<PageCreationRuleEditorData> GetRule(
	GetSingleItemParam data
)

Parameters

data
Type: GetSingleItemParam

Object containing the unique Id of Page Creation Rule to retrieve

Examples
Sample JSON intpu
JavaScript
{
    "data": {
        "itemId": "PageCreationRules/1"
    }
}

Return Value

Type: XHRServiceResponseGenericPageCreationRuleEditorData

Full details of the Page Creation Rule

Examples
Sample JSON return
JavaScript
{
    "code": 0,
    "error": null,
    "message": {
        "info": {
            "name": "Image",
            "id": "PageCreationRules\/1",
            "englishName": null,
            "groupsCount": 2,
            "isDefault": false,
            "workflowEnglishName": null,
            "workflowName": "",
            "autoSelectParent": true,
            "isSchemaComponent": true,
            "parentsCount": 1,
            "schema": "Image File",
            "schemaEnglishName": "Image File",
            "stylesheet": "~default~",
            "usersCount": 0,
            "workflowId": "",
            "groups": [{
                "name": "Administrators",
                "id": "UserGroup\/1"
            }, {
                "name": "Authors",
                "id": "UserGroups\/1"
            }],
            "users": []
        },
        "parents": [{
            "name": "Listing",
            "id": "x112",
            "accessible": true,
            "icon": 99,
            "parentOnly": false,
            "path": "Site\/Listing"
        }]
    }
}
Remarks

If Page Creation Rule with given Id doesn't exit, returns error status

See Also