Created by potrace 1.16, written by Peter Selinger 2001-2019

Miva Developer Docs

This function deletes an existing page


Description#

This function deletes an existing page

Request Body Parameters#

Parameter Type Description
Page_ID
Page_Code
Edit_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
}