• Instructions to Ask a Question

    Click on the "Ask a Question" button and select the application for which you would like to ask questions.

    We have 5 different products namely - Pabbly Connect, Pabbly Subscription Billing, Pabbly Email Marketing, Pabbly Form Builder, Pabbly Email Verification.

    The turnaround time is 24 hrs (Business Hours - 10.00 AM to 6.00 PM IST, Except Saturday and Sunday). So your kind patience will be highly appreciated!

    🚀🚀Exclusive Discount Offer

    Just in case you're looking for any ongoing offers on Pabbly, you can check the one-time offers listed below. You just need to pay once and use the application forever -
     

    🔥 Pabbly Connect One Time Plan for $249 (🏆Lifetime Access) -  View offer 

    🔥 Pabbly Subscription Billing One Time Plan for $249 (🏆Lifetime Access) - View offer

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"
}
]
 

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:

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