Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Need help on REST API (webservice) for woocommerce checkout

How can I write webservice for checkout including payment methods using Woocommerce REST API. Is it available in Woocommerce REST API ? I am new to Woocommerce REST API. Any help is appreciated.

like image 985
Satyendra Prakash Avatar asked Oct 18 '22 13:10

Satyendra Prakash


2 Answers

Finally, I figured it out after some research. Below is working code of woocommerce checkout webservice that may Help others -

 /*** Just Copy & Paste and change your varriables **/

    //do your initial stuff 
    header('Content-type: application/json');
    $json_file=file_get_contents('php://input');
    $jsonvalue= json_decode($json_file,true);

     $user_id = $jsonvalue['user_id']; 
     $product_id = $jsonvalue['product_id']; 
     $quantity = $jsonvalue['quantity'];    

 //start order data 
 $orderData = array(    
     "order" => array(
     'payment_method' => 'paypal',
     'payment_method_title' => 'Paypal',
     'set_paid' => true,
    "billing_address" => array(
                                    "first_name" => "bfname",
                                    "last_name" => "blname",
                                    "company" => "testcompanybilling",
                                    "address_1" => "sec8",
                                    "address_2" => "e32",
                                    "city" => "noida",
                                    "state" => "Noida",
                                    "postcode" => "99999",
                                    "country" => "IN",
                                    "email" => "[email protected]",
                                    "phone" => "888899999999"

                            ),
      "shipping_address" => array(
                                    "first_name" => "sfname",
                                    "last_name" => "slname",
                                    "company" =>  "testcompanyshipping",
                                    "address_1" => "shakkarpur",
                                    "address_2" => "laxminigar",
                                    "city" => "New Delhi",
                                    "state" => "Delhi",
                                    "postcode" => "110092",
                                    "country" => "IN",
                                    "email" => "[email protected]",
                                    "phone" => "11009999"   
                              ),
    "customer_id" => $user_id,
    "line_items" => array( 
        array(
            "product_id" => $product_id, 
            "quantity" => $quantity
        ) 
      )
   )
);

//Create order usind order data
 $data =  $client->orders->create($orderData);
//echo '<pre>';
 //print_r($data);
$result['success']='true';
$result['error']="0";
$result['msg']='Your order has been successfully placed.';  
$result['data']=$data;  

 echo json_encode($result); `

cheers!!!

like image 198
Satyendra Prakash Avatar answered Oct 27 '22 18:10

Satyendra Prakash


You can Refer Woocommerce REST API Documentation for Woocommerce REST API Development.

For Payment Gateways Refer Below URL :
http://woocommerce.github.io/woocommerce-rest-api-docs/#payment-gateways

For Checkout Refer Below URL : WooCommerce API: create order and checkout

I hope this helps.

like image 42
LuFFy Avatar answered Oct 27 '22 20:10

LuFFy