Connect Bubble to AgileCRM

Is it possible to link Bubble with AgileCRM so that my agile account gets updated with new user data such as email and first/last name data?

I cant work it out - there is no plugin and I cant work out a Zap with Zapier

Have you tried the API connector?

1 Like

Yes, I have done this in the past. The API documentation from AgileCRM is very easy to comprehend. Just add the calls in the API connector in bubble and you can update contacts, companies, deals etc. very easily.

1 Like

Thanks - I cant work out what to put in the JSON body - do I just copy over the ‘Accesptable request representation data’ in the README for the REST Api?

I only want to pass first name, email and phone number (all captured by fields) from the bubble app to Agile.

Thanks

I dont use it anymore but I had some old stuff still in the api connector. Maybe it is of use

Private key in header
Key name Authorization
Basic YOURKEY

Use as Action

POST https://yourcompany.agilecrm.com/dev/api/contacts

Accept application/json
Content ttype application/json

{
“star_value”: “4”,
“lead_score”: “92”,
“tags”: [
“Lead”,
“Likely Buyer”
],
“properties”: [
{
“type”: “SYSTEM”,
“name”: “first_name”,
“value”: “Samson”
},
{
“type”: “SYSTEM”,
“name”: “last_name”,
“value”: “Nolan”
},
{
“type”: “SYSTEM”,
“name”: “email”,
“subtype”: “work”,
“value”: "[email protected]"
},
{
“type”: “SYSTEM”,
“name”: “address”,
“value”: “{“address”:“225 George Street”,“city”:“NSW”,“state”:“Sydney”,“zip”:“2000”,“country”:“Australia”}”
},
{
“name”: “phone”,
“value”: “8888888889”,
“subtype”: “work”
},
{
“name”: “phone”,
“value”: “8888888889”,
“subtype”: “home”
},
{
“name”: “website”,
“value”: “www.youtube.com”,
“subtype”: “YOUTUBE”
},
{
“name”: “website”,
“value”: “www.linkedin.com”,
“subtype”: “LINKEDIN”
},
{
“name”: “website”,
“value”: “www.mywebsite.com”,
“subtype”: “URL”
}
]
}

1 Like