<aside>
In the following example, we will be sending customer data to Seen for video generation, and receiving a unique video player link and personalised email thumbnail back to Attio for distribution. This example uses a Send HTTP Request action node in Attio Workflows to send data to Seen, and a Webhook Received - trigger in Attio Workflows to receive the result back and write it to the customer record — ready to use across email, SMS, and in-app campaigns. No third-party middleware is required.
If you have multiple video campaigns with Seen, repeat the process to connect Attio with each one.
You can reach out to your Customer Success Manager at Seen for assistance.
A Project needs to be created and published in the Seen Platform prior to setting up the integration.
</aside>
Create a new workflow in Attio to send data to SEEN.
Set up your Trigger (this example uses Record created and Object → People)
Set up a “Send HTTP Request” step with the following details:
https://next.seen.io/v1/projects/{PROJECT_ID}/data<aside>
You can find your Project endpoint in the Run tab of your Seen Platform Project.
</aside>
AuthorizationBearer {your Seen API token}<aside>
You can create an API token in your Seen Platform workspace under Settings → API.
</aside>
{
"first_name":"{{ First Name }}",
"last_name":"{{ Last Name }}",
"id":"{{ Record ID }}"
}
<aside>
Replace the {{ }} placeholders with the dynamic references available in Attio.
Remember to modify the payload to match the variables used in your Seen Project. All fields must match property names defined in your Seen Project.
</aside>
<aside>
Copy and save the Webhook URL. You will need it when setting up the Seen Project Webhook in the next section.
</aside>
variableseen_player |
|---|
seen_thumbnail |
id |
variablevariablevariablevariableIn Seen Platform, navigate to your Project.
Go to the Run tab, and click on Add webhook.
URL: https://hooks.attio.com/w/xxx/xxx
<aside>
Use the Attio webhook URL created in the previous section here.
</aside>
Method: POST
Use the payload below as a starting point for the Seen webhook body. Replace the {{ }} placeholders with the dynamic output references available in the Seen webhook editor:
{
"seen_thumbnail": "{{ Email thumbnail link }}",
"seen_player": "{{ Player link }}",
"id": "{{ id }}"
}