• 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.

Mapping Elementor Fields in an API Post Request Body

ATheile

Member
I have to make an API Post with the following body, but I'm not sure how to map the values from an Elementor form request made before :
[
{
"name": "Anrede",
"value": "Herr"
},
{
"name": "E-Mail",
"value": "[email protected]"
},
{
"name": "Firma",
"value": "Qualiaeter"
},
{
"name": "Nachname",
"value": "Testman 4"
},
{
"name": "PLZ",
"value": "51234 Testhausen"
},
{
"name": "Straße",
"value": "Testweg 1234"
},
{
"name": "Vorname",
"value": "Eden"
},
{
"name": "VeranstaltungFK",
"value": "06.02.2023 Dialog IT Sicherheit | Netzwerkveranstaltun"
},
{
"name": "Titel",
"value": "Testprofessor"
},
{
"name": "Funktion",
"value": "Inhouse Tester"
},
{
"name": "Homepage",
"value": "https://www.qualitaeter.de"
}
]
 
P

Pabblymember11

Guest
Hey @ATheile

Kindly share the workflow URL, API documentation and elaborate on your concern in brief.
 

ATheile

Member
That workflow works fine with that static body, but I have to map the Elementor Form Fields of the first action to the value body fields of the third action.
 
Last edited:
P

Pabblymember11

Guest
Hey @ATheile

Kindly share the API documentation for the API you are trying, so that we can look into it.
 

ATheile

Member
You can find the documentation for adding a record with the API here in German: https://webconnect.cobra-hilfe.de/docs/webconnect/EineNeueAdresseAnlegen
But I don't know why you need it,
I think my problem is clear.
I have to make an API rquest with folllowing body:
[
{
"name": "Anrede",
"value": "Herr"
},
{
"name": "E-Mail",
"value": "[email protected]"
},
{
"name": "Firma",
"value": "Qualiaeter"
},
{
"name": "Nachname",
"value": "Testman 4"
},
{
"name": "PLZ",
"value": "51234 Testhausen"
},
{
"name": "Straße",
"value": "Testweg 1234"
},
{
"name": "Vorname",
"value": "Eden"
},
{
"name": "VeranstaltungFK",
"value": "7"
},
{
"name": "Titel",
"value": "Testprofessor"
},
{
"name": "Funktion",
"value": "Inhouse Tester"
},
{
"name": "Homepage",
"value": "https://www.qualitaeter.de"
}
]

But i have to replace/map the values of that body with values from an Elementor request in that same workflow.
 
Top