usage of Webhook with APWT

Need help? Please give a detailed explanation of your problem.
Post Reply
Trannum3487
Posts: 116
meble kuchenne Mikołów Knurów Czechowice-Dziedzice
Joined: Mon Apr 19, 2021 8:27 am
Website: www.scottcoxconsulting.com

usage of Webhook with APWT

Post by Trannum3487 »

Greetings,

we want to have the Get A Quote form post via webhook the form submission data. Here is an endpoint that we want direct those to:

https://app.chiirp.com/integrations/web ... 903ddcfe83

how we can achieve this?
please share the steps to do so.

Thanks
User avatar
Brads326
Support Team
Support Team
Posts: 179
Joined: Tue Dec 12, 2017 10:06 am
Website: www.allprowebtools.com

Re: usage of Webhook with APWT

Post by Brads326 »

What is the URL of the page where the form is located?
Trannum3487
Posts: 116
Joined: Mon Apr 19, 2021 8:27 am
Website: www.scottcoxconsulting.com

Re: usage of Webhook with APWT

Post by Trannum3487 »

We have get a quote form on Home page.
https://www.beaconcleaningfl.com/#getaquote
Trannum3487
Posts: 116
Joined: Mon Apr 19, 2021 8:27 am
Website: www.scottcoxconsulting.com

Re: usage of Webhook with APWT

Post by Trannum3487 »

This is quite urgent. Can you please answer asap?
Trannum3487
Posts: 116
Joined: Mon Apr 19, 2021 8:27 am
Website: www.scottcoxconsulting.com

Re: usage of Webhook with APWT

Post by Trannum3487 »

Greetings,
It would be helpful if you can answer us asap!
Thank you
User avatar
Chopper326
AllPro Provider
AllPro Provider
Posts: 174
Joined: Thu Sep 09, 2021 11:37 am
Website: www.allprowebtools.com

Re: usage of Webhook with APWT

Post by Chopper326 »

The link that you provided "https://app.chiirp.com/integrations/web ... 903ddcfe83"
Shows this page
Screenshot from 2022-03-10 19-14-23.png
Screenshot from 2022-03-10 19-14-23.png (43.4 KiB) Viewed 1245 times
Trannum3487
Posts: 116
Joined: Mon Apr 19, 2021 8:27 am
Website: www.scottcoxconsulting.com

Re: usage of Webhook with APWT

Post by Trannum3487 »

https://app.chiirp.com/integrations/web ... 903ddcfe83
This is the endpoint where we need to send data. It does not matter if it is not directly accessible.

We have form beaconcleaningfl.com#getaquote here and want to send posted data to the above-given link. Please add a webhook if possible with APWT. please proceed with this asap!

Thank you
User avatar
Dave
Support Team
Support Team
Posts: 1221
Joined: Wed May 11, 2011 10:30 am
Website: www.allprowebtools.com
Contact:

Re: usage of Webhook with APWT

Post by Dave »

Please provide a code sample from chiirp.com for integration.
Trannum3487
Posts: 116
Joined: Mon Apr 19, 2021 8:27 am
Website: www.scottcoxconsulting.com

Re: usage of Webhook with APWT

Post by Trannum3487 »

Greetings,

We are adding more details here.

Chiirp require JSON data like this:
{"firstname": "Adam", "lastname": "Smith"}

They don't have any requirements for the data fields to be defined specifically. The only requirement is that the fields not be nested.

Webhooks allows communication between two application. I believe we need to do hard code and use CURL requests to send JSON formatted data from the "Leadbox" (we have on the Home Page of our client: https://www.beaconcleaningfl.com/#getaquote) whenever is submitted by the customers/users.

Curl Request Url: https://app.chiirp.com/integrations/web ... 903ddcfe83

This is the endpoint where we need to send data.

please mention if you have any other questions or doubts. I will be waiting for your reply.

Thank you
Trannum3487
Posts: 116
Joined: Mon Apr 19, 2021 8:27 am
Website: www.scottcoxconsulting.com

Re: usage of Webhook with APWT

Post by Trannum3487 »

Did you guys get a chance to check?
Trannum3487
Posts: 116
Joined: Mon Apr 19, 2021 8:27 am
Website: www.scottcoxconsulting.com

Re: usage of Webhook with APWT

Post by Trannum3487 »

Hi
Did you get a chance to check the details I shared and Let me know if you need any other information?
Thank you.
Trannum3487
Posts: 116
Joined: Mon Apr 19, 2021 8:27 am
Website: www.scottcoxconsulting.com

Re: usage of Webhook with APWT

Post by Trannum3487 »

Greetings,

We are adding more details here.

Chiirp require JSON data like this:
{"firstname": "Adam", "lastname": "Smith"}

They don't have any requirements for the data fields to be defined specifically. The only requirement is that the fields not be nested.

I believe we need to do hard code and use CURL requests to send JSON formatted data from the "Leadbox" (we have on the Home Page of our client: https://www.beaconcleaningfl.com/#getaquote) whenever is submitted by the customers/users.

Curl Request Url: https://app.chiirp.com/integrations/web ... 903ddcfe83

This is the endpoint where we need to send data. I am writing a code sample to test if that works. Basically, we are trying to send Test data to Chiirp app. If this sample code work, we make the request Dynamic. With Dynamic, I mean the filled information in the form will be sent. Can you please try this and share what we receive as a response?

<?php

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL,"https://app.chiirp.com/integrations/web ... 903ddcfe83");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
"firstname=APWT&lastname=TEST");

// Receive server response ...
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$server_output = curl_exec($ch);

// Lets see what we get in return
echo "<pre>"; print_r($server_output); echo "</pre>";

curl_close ($ch);

?>

Let me know if you have any questions or need any other information.

Thank you
User avatar
Dave
Support Team
Support Team
Posts: 1221
Joined: Wed May 11, 2011 10:30 am
Website: www.allprowebtools.com
Contact:

Re: usage of Webhook with APWT

Post by Dave »

Thanks - this is very helpful. I will contact Scott directly on this matter.
Trannum3487
Posts: 116
Joined: Mon Apr 19, 2021 8:27 am
Website: www.scottcoxconsulting.com

Re: usage of Webhook with APWT

Post by Trannum3487 »

Greetings,

Thank you
Post Reply