I need to create custom action with in input i want all contact properties to be passed to webhook. This is because there may some user defined properties created and they are dynamic so i can’t mention this. Like send webhook action i want to include all contact properties, so that i can process it whichever i want
Hey @SKhot
To create custom actions with all contacts properties to be passed to the webhook you need to add query parameter to get request for specific properties kindly go through this article this can help you out in this : How to Trigger Webhooks in HubSpot Contact-Based Workflows
Let me know if you have any follow-up questions.
If my post was helpful in addressing your query, Support the community by indicating it as the solution.
I dont want user to enter property name and select properties. here there may be chances that user can mistake in entering property name
Just i want to pass all contact data from previous trigger
To get all contact details you need to use API v1
GET: https://api.hubapi.com/contacts/v1/contact/email/testingapis@hubspot.com/profile
https://legacydocs.hubspot.com/docs/methods/contacts/get_contact_by_email
you have option to get it by contact ID.
Then from API call response you need to map all properties you want to pass via webhook and voila data from HS send to wherever you want.
but i dont want to call for client hubspot account to get this details