Description#
This function deletes an existing page
Request Body Parameters#
| Parameter | Type | Description |
|---|---|---|
Page_IDPage_CodeEdit_Page |
Number String String |
The id of the page being deleted The code of the page being deleted The code of the page being deleted |
Response Parameters#
| Parameter | Type | Description |
|---|---|---|
success |
Boolean | Boolean value indicating if the API request was successful |
Example Request#
{
"Store_Code": "{{Store_Code}}",
"Miva_Request_Timestamp": "{{$timestamp}}",
"Function": "Page_Delete",
"Page_Code": "black-friday-promo"
}
Or, identifying the page by ID instead of code:
{
"Store_Code": "{{Store_Code}}",
"Miva_Request_Timestamp": "{{$timestamp}}",
"Function": "Page_Delete",
"Page_ID": 105
}
Example Response#
{
"success": 1
}