Shopify

With Shopify webhook integration, you can instantly notify your store about chat events, new orders, or updated orders that occur on Whatsapp. Set up by:

Step 1: Log in to shopify and Navigate to Webhooks Settings

Log in to your shopify account and navigate to the Settings section. Look for the Webhooks or Integration settings to configure webhook endpoints for order-related events.

Step 2: Create Order Init Webhook

Configure a webhook specifically for order initiation events in shopify. This webhook will notify your server when a new order is created.

  • 1.Link: https://api.wacrm.net/Webhook/v1.0/shopify/(Merchant_ID)
  • 2.Name: Order_Init
  • 3.Event Type: Request has been created
  • 4.Version: v2
  • 5.HTTP Method: POST
  • 6.Header: token: (the actual token value will be provided in the webhook setup)

Step 3: Create Order Update Webhook

Configure a second webhook for order update events in shopify. This webhook will notify your server when there are updates to order information.

  • 1.Link: https://api.wacrm.net/Webhook/v1.0/shopify/(Merchant_ID)
  • 2.Name: Order_Update
  • 3.Event Type: Request information has been updated
  • 4.Version: v2
  • 5.HTTP Method: POST
  • 6.Header: token: (the actual token value will be provided in the webhook setup)

Step 4: Implement Webhook Handling on Your Website

Set up a server on your website to handle incoming webhook requests. This server should include logic to process the Order_Init and Order_Update events.