is job changes also tracking promotions?
No, job changes and promotions are separate signals in Clay. Job changes track when contacts move to new companies, while promotions monitor when contacts get promoted within their current company. [1]
You can set up both types of monitoring - promotions track internal career advancement at the same company, and job changes track movement between different companies. [2]
Was that helpful?
If you need any more help understanding how job changes and promotions are tracked, I’m here to assist. Would you like to provide more details about what you’re trying to achieve with these signals?
can new hire signal with a HS notification trigger that is being added into the Clay contacts table which is being tracked by job changes can trigger the same HS notification trigger twice as it also has its own HS notification
Yes, this can create duplicate notifications - it's a common infinite loop scenario in Clay. [1]
When a new hire signal adds contacts to your table and triggers a HubSpot notification, and job changes tracking also has its own HS notification for the same contacts, you'll get duplicate triggers. [2]
To fix this:
Use a status column to track notification status (e.g., "Not Sent", "Sent")
Only trigger one notification type when status is "Not Sent"
Update status immediately after notification fires
Use conditional logic to prevent both signals from triggering notifications for the same contact
This prevents the bidirectional sync issue where multiple automations trigger notifications for the same data. [3]
Was that helpful?
If you still need help resolving the duplicate notification issue or have other questions about signals and notifications, I’m here to assist. Would you like to share more details about your setup or what you’re trying to achieve?
when using HS integration and creating a task with (0-27), what are the required fields i need to fill and in what format?
The sources don't contain specific information about HubSpot task creation requirements or the "(0-27)" reference you mentioned. For JSON formatting in integrations, string values need quotes like "task_name": "Follow up", while numbers and booleans don't need quotes like "priority": 1 or "completed": false. [1]
Could you paste the JSON you're working with so I can help troubleshoot the specific formatting issue?
how to create a HS task using clay integration
To create a HubSpot task using Clay's integration, you'll use the "Create object" action. Here's how:
In your Clay table, click "Add enrichment" and search for "HubSpot"
Select the HubSpot integration option
Choose "Create object" action
Set the object type to "Task" (or the appropriate task object type in HubSpot)
Configure the required fields for your task [1]
The documentation doesn't specify the exact required fields for HubSpot tasks, but you'll need to fill in the task properties that HubSpot requires. [2]
Before diving deeper into the setup, have you tried using Sculptor (our AI tool in the top-right corner) to help configure this HubSpot task creation? It can often figure out the specific field requirements automatically.
If you still need help with creating a HubSpot task using Clay's integration, I’m here to assist. Would you like to provide more details about your setup or any specific issues you’re encountering?
does clay have current date and time function? and also a UNIX timestamps converter?
Yes! Clay has both functions.
Current date/time: Use moment().format() in formulas for current timestamps. You can format it however you need - like moment().format("MMMM, D YYYY") for "March, 11 2024" style dates.
UNIX converter: Use the Format Date/Time formatter - it has Unix Timestamp as an output option. Just select your date column, choose Unix Timestamp format, and keep the column type as text. [1]
Clay formulas support full Moment.js functionality for all your date/time needs. [2]
Was that helpful?
