<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>

Send data to SEEN

  1. Create a new workflow in Attio to send data to SEEN.

  2. Set up your Trigger (this example uses Record created and Object → People)

  3. Set up a “Send HTTP Request” step with the following details:

    <aside>

    You can find your Project endpoint in the Run tab of your Seen Platform Project.

    </aside>

    <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>

  1. You can now publish your workflow and create a record to test the connection.

Prepare to receive data from Seen

  1. Create new Attribute fields for the People object. In this example we will name them Seen player and Seen thumbnail. Remember to use Text as the type.
  2. Create a new workflow, and choose Webhook received as the trigger.

<aside>

Copy and save the Webhook URL. You will need it when setting up the Seen Project Webhook in the next section.

</aside>

  1. Add Parse JSON as the next step, and configure it with following information:
seen_player
seen_thumbnail
id
  1. Add Find Records as the next step, and configure it with following information:
  2. Add Update Record as the next step, and configure it with following information:
  3. Publish your workflow.

Receive data back from SEEN

  1. In Seen Platform, navigate to your Project.

  2. Go to the Run tab, and click on Add webhook.

    {
        "seen_thumbnail": "{{ Email thumbnail link }}",
        "seen_player": "{{ Player link }}",
        "id": "{{ id }}"
    }