Definitely, attached are screenshots of the Zapier workflow. Basically upon user registration my app also creates an entry on the “Profile” data table and is updated with user data. I want Zapier to pick up the new profile entry and create a contact with that information in Hubspot. It seems like the first step of the Zap is not getting triggered.
We will be happy to assist you. I need to ask you a few more questions so I can understand the problem better.
Please provide your Backendless applicationId.
The “Profile” data table in Backendless?
What application did you choose when configuring Zap?
Which table did you choose when setting up the Zap?
Test for trigger Object Created in Backendless is OK?
Test for Create Contact in HubSpot is OK?
there is an easy way to test integration. When you register trigger backendless creates non blocking event handler. So to see the result of execution of event handler you can change it to blocking:
So backendless successfully sends the result of object creation to the zapier side.
Back to original question
Is this because the object is getting created via codeless and not API?
when you use server-side codeless or any other language, the event handler will not be triggered. Because server cloud code use CloudCode API key, if the call goes
CloudCode API key we do not execute backendless handlers. As workaround, you may create an object using a network block:
I’m now trying to figure out how to set a related object between “Users” and “Profile.” Now since we’re creating an object with HTTP/s, we’re not returning an objectId to set the relationship.