Share feedback, ideas and get community help

g
gk
Offline, last seen 4 weeks ago
Joined September 13, 2024
Hey, guys.

Is there any way I can send a binary file via the HTTP Request block? The image attached is from a Postman request, just to illustrate what I want to do
8 comments
K
B
g
Hey, guys!

I'm having a problem trying to use the Google Sheets block. If I click on the "Pick a spreadsheet" button I can see and select the sheets on my account, but there seems to be an error when Typebot tries to load it
2 comments
g
B
Hi, guys.

Suppose I have the following JSON as an API return and would like to store and display (in one or more text bubbles) each sale with their respective products's prices. What's the best way to do this?

Plain Text
{
  "sales": [
    {
      "id": 1,
      "name": "sale 01",
      "products": [
        {
          "id": 1,
          "name": "product 01",
          "price": 2.32
        },
        {
          "id": 2,
          "name": "product 02",
          "price": 5.99
        }
      ]
    },
    {
      "id": 2,
      "name": "sale 02",
      "products": []
    },
    {
      "id": 3,
      "name": "sale 03",
      "products": [
        {
          "id": 1,
          "name": "product 01",
          "price": 2.25
        }
      ]
    }
  ]
}
13 comments
p
g
B
M
K
g
gk
·

Uploaded image URL

Hey, guys. I have a self hosted version of TypeBot with an AWS S3 bucket configured as the image/file repository. It's working great, but I recently discovered that the images' URL doesn't contain its file extension. Is there any way to upload the image and make its file extension to be a part of the final URL?
5 comments
g
B
Hey, everyone!

I know there is a way to set a value for a variable when starting a chat (as explained here: https://docs.typebot.io/editor/variables#prefilled-variables), but can I do the same when I'm starting the chat via API (using the startChat method)?

Using it this way, the URL would look like this: https://bot.mydomain.com.br/api/v1/typebots/myBot/startChat?ContactName=test&PhoneNumber=123
3 comments
g
M