Key | Type | Optional? | Description |
---|---|---|---|
page_services[].name | string | no | |
page_services[].url_params.available | string[] | no (may be empty) | Names of params available within URL of Page assigned to the service |
page_services[].url_params.required | string[] | no (may be empty) | Names of params required within URL of Page assigned to the service |
page_services[].mandatory_component | string | no | Name of Component that must exist on Page assigned to this service |
{
"page_services": [
{
"name": "article_page",
"url_params": {
"available": [
"id",
"slug"
],
"required": [
"id"
]
},
"mandatory_component": "article_container"
}
]
}
curl --location --request GET 'https://api.mpc.dev.placewise.com/v1/content/management/pages/services' \
--header 'X-User-Agent;' \
--header 'X-Product-Name;' \
--header 'X-Loyalty-Club-Slug;' \
--header 'X-Customer;' \
--header 'Authorization;' \
--header 'X-Client-Authorization: '
{}