API Failure on Edit

API Failure on Edit

Here is an example of the XML Being sent.

I am getting the error: "Failure, Invalid or null criteria specified"

I am following from this page: https://www.zoho.com/creator/help/api/xml-rpc-api/xml-rpc-api-edit-records.html

This does not make sense as the criteria does appear to be the correct database spelling. Down below is the example I am trying to make work. Only thing I changed from the example was changed the view into form as view was not working.

$xml = "

 <ZohoCreator>

    <applicationlist>

        <application name='xxx'>

            <formlist>

                <form name='xxx'>

                    <update>

                        <criteria>

                            <![CDATA[(First_Name== 'xxx')]]>

                        </criteria>

                        <newvalues>

                            <field name='First_Name'>

                                <value>xxx2</value>

                            </field>

                        </newvalues>

                    </update>



                </form>

            </formlist>

        </application>

    </applicationlist>

</ZohoCreator>";