com2 Posted December 31, 2012 Share Posted December 31, 2012 I would like to set or override the price of a product in an order. Is there a way to do this via API calls? 0 Quote Link to comment Share on other sites More sharing options...
timjoyce Posted January 2, 2013 Share Posted January 2, 2013 $postfields["action"] = "updateclientproduct"; $postfields["serviceid"] = "13"; $postfields["recurringamount"] = '3.99'; $postfields["firstpaymentamount"] = '3.99'; Or during order process: $postfields["action"] = "addorder"; $postfields["clientid"] = "1"; $postfields["priceoverride"] = '3.99'; 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.