Skip to content

Instantly share code, notes, and snippets.

@roberto-butti
Created August 29, 2012 09:50
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save roberto-butti/3509401 to your computer and use it in GitHub Desktop.
Save roberto-butti/3509401 to your computer and use it in GitHub Desktop.
Snippet PHP , how to add product in cart and create order in Magento via SOAP API v1
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
$config=array();
$config["hostname"] = "my-hostname-with-magento.com";
$config["login"] = "soapuser";
$config["password"] = "soappassword";
$config["customer_as_guest"] = TRUE;
$config["customer_id"] = 261; //only if you don't want as Guest
$proxy = new SoapClient('http://'.$config["hostname"].'/index.php/api/soap/?wsdl', array('trace'=>1));
$sessionId = $proxy->login($config["login"], $config["password"]);
echo $sessionId;
$shoppingCartIncrementId = $proxy->call( $sessionId, 'cart.create',array( 1 ));
$arrProducts = array(
array(
"product_id" => 12281,
"quantity" => 1
),
array(
"product_id" => 9990,
"quantity" => 1
),
array(
"product_id" => 9988,
"quantity" => 1
),
array(
"product_id" => 9957,
"quantity" => 1
)
);
$resultCartProductAdd = $proxy->call(
$sessionId,
"cart_product.add",
array(
$shoppingCartIncrementId,
$arrProducts
)
);
echo "\nAdding to Cart...\n";
if ($resultCartProductAdd) {
echo "Products added to cart. Cart with id:".$shoppingCartIncrementId;
} else {
echo "Products not added to cart";
}
echo "\n";
$shoppingCartId = $shoppingCartIncrementId;
if ($config["customer_as_guest"]) {
$customer = array(
"firstname" => "Name",
"lastname" => "BB",
"website_id" => "1",
"group_id" => "1",
"store_id" => "1",
"email" => "l516077@rtrtr.com",
"mode" => "guest",
);
} else {
$customer = array(
"customer_id" => $config["customer_id"],
"website_id" => "1",
"group_id" => "1",
"store_id" => "1",
"mode" => "customer",
);
}
echo "\nSetting Customer...";
$resultCustomerSet = $proxy->call($sessionId, 'cart_customer.set', array( $shoppingCartId, $customer) );
if ($resultCustomerSet === TRUE) {
echo "\nOK Customer is set";
} else {
echo "\nOK Customer is NOT set";
}
// Set customer addresses, for example guest's addresses
$arrAddresses = array(
array(
"mode" => "shipping",
"firstname" => "testFirstname",
"lastname" => "testLastname",
"company" => "testCompany",
"street" => "testStreet",
"city" => "Treviso",
"region" => "TV",
"postcode" => "31056",
"country_id" => "IT",
"telephone" => "0123456789",
"fax" => "0123456789",
"is_default_shipping" => 0,
"is_default_billing" => 0
),
array(
"mode" => "billing",
"firstname" => "testFirstname",
"lastname" => "testLastname",
"company" => "testCompany",
"street" => "testStreet",
"city" => "Treviso",
"region" => "TV",
"postcode" => "31056",
"country_id" => "IT",
"telephone" => "0123456789",
"fax" => "0123456789",
"is_default_shipping" => 0,
"is_default_billing" => 0
)
);
echo "\nSetting addresses...";
$resultCustomerAddresses = $proxy->call($sessionId, "cart_customer.addresses", array($shoppingCartId, $arrAddresses));
if ($resultCustomerAddresses === TRUE) {
echo "\nOK address is set\n";
} else {
echo "\nKO address is not set\n";
}
// get list of shipping methods
$resultShippingMethods = $proxy->call($sessionId, "cart_shipping.list", array($shoppingCartId));
print_r( $resultShippingMethods );
// set shipping method
$randShippingMethodIndex = rand(0, count($resultShippingMethods)-1 );
$shippingMethod = $resultShippingMethods[$randShippingMethodIndex]["code"];
echo "\nShipping method:".$shippingMethod;
$resultShippingMethod = $proxy->call($sessionId, "cart_shipping.method", array($shoppingCartId, 'flatrate_flatrate'));
echo "\nI will check total...\n";
$resultTotalOrder = $proxy->call($sessionId,'cart.totals',array($shoppingCartId));
print_r($resultTotalOrder);
echo "\nThe products are...\n";
$resultProductOrder = $proxy->call($sessionId,'cart_product.list',array($shoppingCartId));
print_r($resultProductOrder);
// get list of payment methods
echo "\nList of payment methods...";
$resultPaymentMethods = $proxy->call($sessionId, "cart_payment.list", array($shoppingCartId));
print_r($resultPaymentMethods);
// set payment method
$paymentMethodString= "checkmo";
echo "\nPayment method $paymentMethodString.";
$paymentMethod = array(
"method" => $paymentMethodString
);
$resultPaymentMethod = $proxy->call($sessionId, "cart_payment.method", array($shoppingCartId, $paymentMethod));
// get full information about shopping cart
echo "\nCart info:\n";
$shoppingCartInfo = $proxy->call($sessionId, "cart.info", array($shoppingCartId));
print_r( $shoppingCartInfo );
$licenseForOrderCreation = null;
/*
// get list of licenses
$shoppingCartLicenses = $proxy->call($sessionId, "cart.license", array($shoppingCartId));
print_r( $shoppingCartLicenses );
// check if license is existed
if (count($shoppingCartLicenses)) {
$licenseForOrderCreation = array();
foreach ($shoppingCartLicenses as $license) {
$licenseForOrderCreation[] = $license['agreement_id'];
}
}
*/
// create order
echo "\nI will create the order: ";
$resultOrderCreation = $proxy->call($sessionId,"cart.order",array($shoppingCartId, null, $licenseForOrderCreation));
echo "\nOrder created with code:".$resultOrderCreation."\n";
?>
@ashtech-krishna
Copy link

Hello, Your code is working fine. But I am not able to see generated cart in store front-end. Please anyone can help me out?
Thanks in advance.

@papaisaha
Copy link

hello,
please help me.....how to add product dynamically.....

Thanks in advance

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment