Get all pages

get

/ccstore/v1/pages

This call retrieves all pages defined within the application.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

Returned when the operation succeeds.
Body ()
Root Schema : getPages_response
Type: object
Show Source
Nested Schema : items
Type: array
A list of pages along with their details.
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : pageTypeItem
Type: object
The page type item
Show Source
Example Response (application/json)
[
    {
        "defaultPage":false,
        "displayName":"Returns",
        "indexable":true,
        "sites":[
        ],
        "rules":[
            {
                "repositoryId":"returnsPageViewportPageRule"
            }
        ],
        "source":null,
        "pageTypeItem":{
            "repositoryId":"articlePageType"
        },
        "target":100,
        "route":"/returns",
        "pageType":"article",
        "repositoryId":"returnsPage",
        "name":"returns",
        "supportedDevices":null,
        "secured":false
    },
    {
        "defaultPage":false,
        "displayName":"Checkout",
        "indexable":false,
        "sites":[
        ],
        "rules":[
            {
                "repositoryId":"checkoutCancelSateRule"
            }
        ],
        "source":null,
        "pageTypeItem":{
            "repositoryId":"checkoutPageType"
        },
        "target":100,
        "route":"/checkout",
        "pageType":"checkout",
        "repositoryId":"checkoutCancelPage",
        "name":"checkout",
        "supportedDevices":null,
        "secured":false
    },
    {
        "defaultPage":false,
        "displayName":"Update Password Account Shopper",
        "indexable":false,
        "sites":[
        ],
        "rules":[
            {
                "repositoryId":"updatePasswordAccountShoppersPageRule2"
            },
            {
                "repositoryId":"updatePasswordAccountShoppersPageRule"
            },
            {
                "repositoryId":"updatePasswordAccountShoppersPageRule3"
            }
        ],
        "source":null,
        "pageTypeItem":{
            "repositoryId":"profilePageType"
        },
        "target":101,
        "route":"/updatepassword-accountshoppers",
        "pageType":"profile",
        "repositoryId":"updatePasswordAccountShoppersPage",
        "name":"updatepassword-accountshoppers",
        "supportedDevices":null,
        "secured":false
    },
    {
        "defaultPage":true,
        "displayName":"Order Details",
        "indexable":false,
        "sites":[
        ],
        "rules":[
        ],
        "source":null,
        "pageTypeItem":{
            "repositoryId":"orderDetailsPageType"
        },
        "target":100,
        "route":"/orderDetails",
        "pageType":"orderDetails",
        "repositoryId":"orderDetailsPage",
        "name":"orderDetails",
        "supportedDevices":null,
        "secured":false
    }
]

Default Response

Returned when the operation is unsuccessful.
Body ()
Root Schema : errorModel
Type: object
Show Source
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top