Say my clay table has 100 people. I have 3 http apis
create_list
add_lead
sync_list
i needed to first call create_list and get list id and then use that list id for all 100 people from the clay table and then finally once all 100 people add_lead is done, i needed to call sync_list api. How can i do that?
To automate this process, you can use Clay's webhook feature and HTTP actions. Here's a high-level approach: 1. Use Clay's webhook to send data to your external system that calls the create_list API. 2. Use the "Write to Other Table" action to transfer the list ID to your Clay table. 3. Set up an HTTP action to call the add_lead API for each person in your Clay table. 4. After all leads are added, use another HTTP action to call the sync_list API. This workflow automates the process while keeping your data in Clay and leveraging its integration capabilities. Would you like more details on setting up any specific part of this workflow?
I wanted to do automate the this step 4, I don't wanted to manually call sync_lilst api instead i wanted clay to call this api once all 100 rows add_lead is done. 4. After all leads are added, use another HTTP action to call the sync_list API.
Hey Devi, thanks for reaching out! Just responded to you in a separate thread, going to merge these together. :)