This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<mvt:if expr="l.settings:messages:error_message_count"> | |
<div class="error-message"> | |
<mvt:foreach iterator="error" array="messages:error_messages"> | |
&mvt:error; | |
</mvt:foreach> | |
</div> | |
</mvt:if> | |
<mvt:if expr="l.settings:messages:information_message_count"> | |
<div class="information-message"> | |
<mvt:foreach iterator="message" array="messages:information_messages"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"success": true, | |
"data": | |
{ | |
"total_count": <numeric total count of records matching any input filters>, | |
"start_offset": <numeric starting offset of the records>, | |
"data": | |
[ | |
{ record }, | |
{ record }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "ondemandcolumns", | |
"value": [ "field", "field", "field", ... ] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "ondemandcolumns", | |
"value": [ "field", "field", "field", ... ] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Filter": | |
[ | |
{ | |
"name": "search", | |
"value": | |
[ | |
{ | |
"field": "ship_lname", | |
"operator": "EQ", | |
"value": "Burchmore" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"success": true, | |
"data": call-specific data | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<orders> | |
<mvt:foreach iterator="order" array="admin_order:orders"> | |
<order> | |
<!--General Order Information --> | |
<order_date>&mvte:order:date;</order_date> | |
<order_id>&mvt:order:id;</order_id> | |
<order_status>&mvte:order:formatted_status;</order_status> | |
<batch_id>&mvt:order:batch_id;</batch_id> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<mvt:comment>Bronto JSON Integration - Cart Data => only run after first item is added to cart or on invoicee page</mvt:comment> | |
<mvt:if expr="l.settings:global_minibasket:basketitemsonly_count GT 0 OR l.settings:page:code EQ 'INVC'"> | |
<mvt:comment><!-- Variable setup --></mvt:comment> | |
<mvt:if expr="l.settings:page:code NE 'INVC'"> | |
<mvt:comment><!-- Order item data --></mvt:comment> | |
<mvt:assign name="l.settings:orderData:subtotal" value="0" /> | |
<mvt:assign name="l.settings:orderData:discounts" value="0" /> | |
<mvt:assign name="l.settings:orderData:tax" value="0" /> | |
<mvt:foreach iterator="item" array="global_minibasket:items"> | |
<mvt:comment><!-- Order subtotal --></mvt:comment> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="&mvt:product:customfield_values:customfields:user_manual_01;">User | |
Manual</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<mvt:comment> | |
| Loop though all orders returned all new orders. | |
</mvt:comment> | |
{ | |
<mvt:assign name="g.number_orders" value="miva_array_elements( l.settings:admin_order:orders )" /> | |
"orders_returned": "&mvtj:global:number_orders;", | |
"orders": | |
[ |
NewerOlder