cancel
Showing results for 
Search instead for 
Did you mean: 

E-commerce Web API

E-commerce Web API

I am trying to use Zapier to automatically fulfill an order from Influitive to Magento 2. I can connect influitive to Zapier and Zapier to my Magento site, but there does not seem to be a way to create a new order on Magento 2 with the order information from Influitive.I have been trying a work around but need to know where i can find my Web API Key and Password, I also don't have the code or endpoint for the whole order process. If anyone can help or has any ideas on how I can make this happen I would greatly appreciate it!

2 REPLIES 2

Re: E-commerce Web API

Hi @tyler_goldston 

 

Please check below links that will help you.

1. https://support.influitive.com/category/36-influitive-api

2. https://support.influitive.com/category/86-zapier

If my answer is helpful, please Accept as Solution & give Kudos

Re: E-commerce Web API

I have followed the Shopify endpoint for orders but Magento apparently uses a different one which I can not find anywhere? Would you happen to know what Magento's endpoint for orders is? Also, the process for getting API numbers on Magento is confusing, would you happen to have any instructions on that?

 

 {  
 "order": { 
   "line_items":[ 
      { 
         "variant_id": 222222222,        //This is the variant ID of your product in Shopify
         "quantity": 1, 
         "fulfillment_status": "null" 
      } 
    ], 

 "customer": { 
   "first_name": "[Advocate's First Name]",  
   
"last_name": "[Advocate's Last Name]",
   "email": "[Advocate's Email]"
  }, 

"financial_status": "pending", 

"shipping_address": { 
   "first_name": “[Advocate’s First Name]", 
    "last_name": “[Advocate’s Last Name]", 
    "address1": “[Advocate’s Address]", 
    "address2": “[Advocate’s Redemption ID]", 
    "city": “[Advocate’s City]", 
    "province": “[Advocate’s Province/State]", 
    "country": “[Advocate’s Country]", 
    "zip": “[Advocate’s ZIP]" 
    } 
  }