1. Click this link and create a user - https://n8n.io/

  2. Click “Add Workflow”.

  3. Choose the module you will send data from (Webhook, Google sheet etc). We will use Webhook in this guide.

  4. Change HTTP method to “Post”, and click “Listen For Test Event”.

  5. Send a test payload to the “Test URL”. You will now see the structure of your payload body under “Output”.

  6. Click on the “+” button on the top right corner. Choose “Helpers” ⇒ “HTTP Request”.

  7. Under “HTTP Request” do the following:

    1. Change “Method” to “Post”

    2. Add your SEEN endpoint URL: https://next.seen.io/v1/projects/{Project_ID}/data

      <aside>

      You can find the endpoint in the Run tab of your project.

      </aside>

    3. Choose “Generic Credential Type” under “Authentication”, and “Header Auth” under “Generic Auth Type”

    4. Create new credential: “Name” = “Authorization” & “Value” = “Bearer {Your API Token}”.

      <aside>

      You can create a token in the Run tab of your project.

      </aside>

    5. Toggle “Send Body” on and choose “JSON” as the “Body Content Type” as well as “Using JSON” as the “Specify Body”.

    6. Use the following example structure using the “Input” ⇒ “Body” menu in the HTTP node to map your fields:

    Screenshot 2026-06-12 at 11.49.09.png

You can copy the above example here (make sure to change the content to match your project set-up):

{
		"first_name":"{{ $json.body.first_name }}",
		"id":"{{ $json.body.customer_id }}"
{

Replace and add relevant fields and corresponding placeholders for values based on the existing module you have connected

  1. Click on “Execute node” to test your payload.
  2. If you are using Webhook in N8N, remember to change the Webhook URL to “Production URL” in your system before going live.