Hi! Running a very simple get request which works in Postman but using Webhook gives me an error
"campaign_id" is not allowed (HTTP Status Code: 400)
curl https://server.smartlead.ai/api/v1/leads/?api_key=${API_KEY}&email=${email}
should return something like
{ "id": "627657", "first_name": "Ramesh", "last_name": "Madanlal", "email": "m.rameshkumarjain@gmail.com", "created_at": "2022-08-29T06:15:31.513Z", "phone_number": "9042859097", "company_name": "Five2One", "website": "www.five2one.com.au", "location": "India", "custom_fields": {}, "linkedin_profile": "", "company_url": "", "is_unsubscribed": false }
“campaign_id” is a piece of data from an unrelated webhook but it’s not connected to this webhook in any way.
Any idea?
Thanks!