Update Notes to Cart

Add or update notes to a new or existing cart.

zapiUpdateNotesToCart

POST https://{yourdomainname}.zaui.net/zapi/

Request Body

NameTypeDescription

zapiToken*

integer

Token that must be used for a reseller to communicate with the supplier system.

cartId*

integer

ID of the current cart session to add the activity to.

methodName*

string

The method being called.

zapiUserId*

integer

Generated by the supplier system when a new contact is created.

zapiAccountId*

integer

Generated by the supplier system.

notes*

string

Notes/Comments to add to the cart

<?xml version="1.0" encoding="utf-8"?>
<response>
    <zapiVersion>2.1</zapiVersion>
    <error>0</error>
    <message>OK</message>
    <methodResponse>
        <methodName>zapiUpdateNotesToCart</methodName>
        <methodErrorCode>0</methodErrorCode>
        <methodErrorMessage>Updated notes</methodErrorMessage>
        <notes>
            <![CDATA[These are my notes that I need to save to the cart.  Really anything can be placed in here, including characters \"\'\" \"!]]>
        </notes>
    </methodResponse>
</response>
<request>
	<zapiToken></zapiToken>
	<zapiAccountId></zapiAccountId>
	<zapiUserId></zapiUserId>>
	<zapiMethod>
		<methodName>zapiUpdateNotesToCart</methodName>
		<cartId></cartId>
		<notes>Enter notes here</notes>
	</zapiMethod>
</request>

Last updated