• Instructions to Ask a Question

    For any assistance, please click the "Ask a Question" button and select the Pabbly product for which you require support.

    We offer seven comprehensive applications designed to help you efficiently manage and grow your business:

    Our support team endeavors to respond within 24 business hours (Monday to Friday, 10:00 AM to 6:00 PM IST). We appreciate your understanding and patience.

    🚀 Exclusive Lifetime Offers 🚀

    We invite you to take advantage of our special one-time payment plans, providing lifetime access to select applications:

    • 🔥 Pabbly Connect — Lifetime Access for $249View Offer
    • 🔥 Pabbly Subscription Billing — Lifetime Access for $249View Offer
    • 🔥 Pabbly Chatflow — Lifetime Access for $249View Offer

    Make a one-time investment and enjoy the advantages of robust business management tools for years to come.

App -> Pabbly -> Discord embed message

krusher

Member
Hi,

i'm trying to build an app -> pabbly -> discord embed message via webhooks, but cant get messages to show up as embeds in discord..

I've used embed visualizer (https://leovoel.github.io/embed-visualizer/) to get the code and used a Custom Request (Webhooks) POST action on pabbly to send it over to discord as an embed but it doesnt work.
i only receive content part of the message, but not the embed part.

How can this be fixed? please help
 
Last edited by a moderator:
P

Pabblymember11

Guest
Hey @krusher

As we can check your API by the Pabbly action step, it responding on Discord accordingly.
 

krusher

Member
Hi, Thanks for the response. i've spent about 5-6 hours and after a lot of trial & error tries finally figured out a structure that works for discord embed message webhooks, thats why it is showing up :)

For anyone else in the community scrolling through similar webhook issues - it has to do with the way you structure DATA fields

@Supreme, could you please remove that screenshot, it contains sensitive info
 

Romain

Member
@krusher Can you share some details of how you got this to work?
I'm a few hours in and can't figure this out.

The embed I'm wanting is not complex, but I'm trying to get a title, footer and a color for the left border with data extracted from email parser somewhere in between.

I'd really appreciate any info you can share on this.
 
P

Pabblymember11

Guest
Hey @Romain

The user might have used the API by Pabbly action step to perform the embedded operation.

You can refer to the following screenshot on the sample -

1683784188457.png


{ "embeds": [ { "title": "trdttt", "url": "www.pabbly.com", "color": 1, "footer": { "icon_url": "www.pabbly.com", "text": "test" }, "author": { "name": "Test", "icon_url": "https://sample-videos.com/img/Sample-jpg-image-100kb.jpg" }, "fields": [ { "name": "Status", "value": " 1. Status : Ok" }, { "name": "Ok test sample", "value": "5dsfsdf4s5df4s" }, { "name": "Test7458", "value": " 87s8df8sd4f89sd4f8sd4fsd" }, { "name": "From", "value": "sdf8sd4f8sd4f8sd4f8sd4f8dsf" }, { "name": "To", "value": "sd5f4sdf48s5df8sdf4s8df48sdf4s" }, { "name": "7e1f8se", "value": "787484", "inline": true }, { "name": "ds78fsd7f84e", "value": "test74558", "inline": true } ] } ] }

Further, we recommend you contact an automation expert who can create and manage such JSON as per your need.
 

T.X

Member
I'm sure by now people have figured it out but in case you haven't:
  • Use Discohook to create your JSON template, usually this tool is for manually sending, it's community driven and updated regularly, even Discord discuss it. Here we cn take it one step further and automate it with Pabbly Connect.
  • Once you've formatted your visual template grab the data from the JSON Data Editor button near the bottom of the page
  • In Pabbly as mentioned above create the following from the API process:
    • Custom Event
    • Post Method
    • Connect discord webhook
    • JSON payload with no api wrap
    • no auth
  • You can now paste your Data from Discohook and start replacing your template fields with whatever input data you're working with.

Be sure to put your data within the fields quotations

{
"content": null,
"embeds": [
{
"title": "TITLE",
"description": "DECSCRPT",
"url": " ",

I just created the dummy text within Discohook to log the templates, maybe it easier to understand later.
 
Last edited:
Top