Description#
This function updates an existing page
Request Body Parameters#
| Parameter | Type | Description |
|---|---|---|
Page_IDPage_CodeEdit_Page |
Number String String |
The id of the page being updated The code of the page being updated The code of the page being updated |
Page_Name |
String | The name of the page |
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_Update",
"Page_Code": "SFNT",
"Page_Name": "Custom Storefront"
}
Or, identifying the page by ID instead of code:
{
"Store_Code": "{{Store_Code}}",
"Miva_Request_Timestamp": "{{$timestamp}}",
"Function": "Page_Update",
"Page_ID": 105,
"Page_Name": "Custom Storefront"
}
Example Response#
{
"success": 1
}