Decide what type of data you want to sync from Kondo to Attio and create fields for them. Here are common fields:
Create a new workflow in Attio and select the trigger type “Receive Webhook”
Add a step Parse JSON, and create one field for each type of data you want to sync from Kondo to Attio.
Use these path names to get the right data from Kondo, and give them whatever Alias you want
Find a matching record in Attio to update. Note that for this to work well, your records in Attio need to already have a Linkedin URL.
If you don’t have this set up, you can use First Name / Last Name to get an approximate match
Use the record found in Step 4 and map new values to the Kondo fields you want to populate
If you’d like to add the message history to the Attio timeline in addition to / instead of just a property:
You will have to use the ‘Send HTTP request’ step to add a note to the record in Attio
Method: POST
Header: Authorization
Value: Bearer - get an API key from your integrations settings in Attio
Content-Type header: application/json
Body:
{
"data":{
"parent_object":"people",
"parent_record_id": "{Matching People > Record ID}",
"title": "Latest LinkedIn DM",
"format": "plaintext",
"content": "{Kondo Latest Message}"
}
}
Note: Insert the variables for record_id and content with data from the previous steps, the above are samples from my implementation