WooChat Docs
Login
  • 👋Welcome to WooChat Docs
  • GET STARTED
    • Signup
  • Connect WhatsApp Channel
    • Pre-requisites
    • Connect your WhatsApp
    • Meta Business Verification
    • Apply for WhatsApp Green Tick
    • Messaging Limits & Quality Ratings
    • WooChat Account Setup FAQs
  • CONVERSATIONS
    • WooChat Conversations Glossary
    • Inboxes
    • Team Inbox
    • Initiate a New Chat
    • Compose Box
    • Manage Inbox
    • Quick Replies
    • WooChat Conversations FAQs
  • Audience
    • WooChat Contact Glossary
    • Add Contact
    • Tags
    • Contact Segments
    • Field Collection
    • Contact Updation
    • Contact Deletion
    • Marketing Opt-In
      • Marketing opt-in on contact creation
      • Marketing opt-in Handling Methods
      • Marketing opt-out Management
  • BOTS
    • WooChat Bot Glossary
    • Bot Essentials
    • Bot in WooChat
    • Flow in the Bot
    • Send Card
      • Send Text
      • Send Media
      • Send Collection
      • Send Voice
      • Send Products
      • Send Template
      • Send Form
      • Send Payments
      • Send Location
    • Ask Questions
      • Ask Text
      • Ask Date
      • Ask Email
      • Ask Number
      • Ask Phone
      • Ask URL
      • Ask File
      • Ask Location
      • Ask Button Option
      • Ask Address
      • Ask Keyword Option
      • Ask List Option
      • Ask Collection List
      • Ask Form
      • Ask Payments
    • Bot Utilities
      • Send Button Option
      • Send List Option
      • Delay
      • Condition
      • Set Variable
      • Jump to
      • Switch
      • AI node - GPT Dialog
      • AI node - GPT Knowledge Base
      • Working hours
      • Hint
    • Bot Actions
      • Assign Conversation
      • Unassign Conversations
      • Resolve Conversations
      • Update Conversation Fields
      • Update Contact Fields
      • Update Company Fields
      • Push to Sequence
      • Add Note & Mention
    • Set up Default Bot
    • Bot Management
    • WooChat Bot FAQs
  • Whatsapp Campaigns
    • WooChat Campaigns
    • Select Audience
    • Select Template
    • Review and Send Campaigns
    • Campaigns Analytics and Report
    • WooChat Campaigns FAQs
  • ACCOUNT MANAGEMENT
    • Account Essentials
    • User, Teams, and Roles
    • Account Details
  • Pricing & Billing Modules
    • Conversation Pricing
    • Message Credits
    • Billing & Subscriptions
    • FAQs
  • Whatsapp Templates
    • WhatsApp Templates
      • Template Creation and Editing
      • Custom Marketing and Utility Templates
      • Product Marketing Templates
      • Order Details Template
      • Carousal Template
      • WhatsApp template URL tracking
      • FAQs - WhatsApp Template Messages
  • DEVELOPER RESOURCES
    • API Key
    • API Docs
  • Privacy and Security
    • Data Security and Infra
    • Security FAQ
    • Subprocessors
  • EXTRAS
    • WhatsApp Business API - Unsupported Messages
    • Understanding Message Delivery Issues on WhatsApp
    • WhatsApp’s New Per-user Messaging Limits
Powered by GitBook
On this page
  • Send Products
  • Overview

Was this helpful?

  1. BOTS
  2. Send Card

Send Products

Send Products

Utilize the Send Products card to showcase products to customers. Include detailed information, features, benefits, and more. Personalize messages with variables and format text.

Who can use this Card?

  • WooChat Users having permission to either build and deploy bots or manage bots.

  • Available on all Paid Plans.

Overview

You can use the Send Products card to share a specific product from your catalogue with your customers.

Make sure the catalog is set-up in WooChat before you use this card.

Message

It is a space to provide detailed information regarding the product(s), features, benefits, or any other relevant information.

Use Variables

Use them to add already collected data from your customers to the messages.

Just click on "Add Variables" to open up a dropdown with all the available fields. Just a quick tip – make sure the variable you choose actually has some data in it, or it won't show up as intended!

Bold

Select the text you want to bold and click on the "B" below the text area to make it bold. The text will be enclosed within two asterisk (*).

Italic

Select the text you want to make italic and click on the "I" below the text area to make it italic. The text will be enclosed within underscore (_).

Strikethrough

Select the text you want to strikethrough and click on the "s" below the text area to make strikethrough. The text will be enclosed within Tilde (~).

Catalogue

Products Type

You have two options to choose the products from - Static Products and Dynamic Products.

1. Static Products

From the drop-down, you have to select the products you would like to showcase from the catalog you connected to WooChat. Incase you select more than one product to showcase, you will have to edit the Header too.

2. Dynamic Products

If you want to send some selected items to your customers dynamically, use the dynamic option. The values can be accessed using API Call.

  • Variable to iterate: Add the name of the variable here (the variable you stored the Response in the API Call Connector).

  • Path to ID: Add the path from your internal database in curly brackets {{}}.

For instance, below is an example of JSON response you get from your API:

{
  "product_data": [
    {
      "sku_id": 1006,
      "name": "Idli"
    },
    {
      "sku_id": 1003,
      "name": "Buttermilk"
    },
    {
      "sku_id": 1030,
      "name": "Rosemilk"
    }
  ]
}

For the above response, the Path to ID will be {{sku_id}} and the Variable to iterate will be the one in which the API response is stored. Check your API Call node for the variable and use the variable here.

Make sure your value for Path to Id and the Retainer ID in your catalog connected to WooChat is same for the products to lessen the chance of error.

Dynamic Options with sections

This feature lets you send a selected group of product items to your customers, arranged in sections, and dynamically created from a JSON/API response stored in your variable.

For instance, below is an example of JSON response you get from your API:

{
  "itinerary": [
    {
      "day": "Day 1",
      "activities": [
        {
          "activity_id": "act001",
          "name": "Visit the Colosseum",
          "description": "Explore the iconic Roman amphitheatre"
        },
        {
          "activity_id": "act002",
          "description": "Enjoy a traditional Roman pizza lunch"
        },
        {
          "activity_id": "act003",
          "name": "Stroll through the Trevi Fountain",
          "description": "Toss a coin and make a wish!"
        }
      ]
    },
    {
      "day": "Day 2",
      "activities": [
        {
          "activity_id": "act004",
          "name": "Explore the Vatican Museums",
          "description": "See incredible art and historical artifacts"
        },
        {
          "activity_id": "act005",
          "name": "St. Peter's Basilica",
          "description": "Visit the largest church in Christianity"
        }
      ]
    }
  ]
}

For the above response,

Section Field
Value from the example code

Variable to iterate

will be a variable in which the list of sections are stored.

JSONPath for the section title

{{day}}

JSONPath for the section products

{{activities}}

JSONPath for the product ID

{{activity_id}}

This example demonstrates how to structure your JSON (stored in a variable) to the required format of "Dynamic Options with sections" using JSONPath. Ensure that the selected variable contains the data in an array format representing the product sections.

A footer, found at the bottom of a message, typically includes the following information:

  • The sender's name and contact details.

  • Instructions for opting out of future messages.

  • A disclaimer or copyright notice.

  • Links to the sender's website or social media profiles.

Duplicate/Delete/Edit Send Product Card

When hovering over the card, you'll see the option to duplicate the card, a pencil to edit the block, and a "x" to delete the card.

Here is how Send Product card looks on WhatsApp:

PreviousSend VoiceNextSend Template

Last updated 9 months ago

Was this helpful?

Select the catalogue from which the products is to be listed. If you haven't connected your catalogue yet with WooChat, .

click here