Webflow sync, pageviews & more.
NEW

Is it possible to send a user_id in a form in Webflow to associate a file uploaded by a logged-in user to their account? If not, what is the recommended way to achieve this using JavaScript or other methods in Webflow?

TL;DR
  • Use Webflow Memberships to retrieve the logged-in user-id via JavaScript and insert it into a hidden form field.
  • If Webflow Memberships isn't available, store authentication tokens (e.g., JWT) in localStorage/sessionStorage, retrieve the user_id, and append it to the form before submission.
  • Alternatively, use Zapier or Make (Integromat) to capture form submissions and associate user data with backend storage.

Webflow does not natively support dynamic user_id inclusion in forms. However, you can achieve this using JavaScript and either Webflow Memberships (if enabled) or a third-party authentication system. Below are the recommended approaches.

1. Using Webflow Memberships (If Available)

  • If you are using Webflow Memberships, the logged-in user’s user-id is available in JavaScript.
  • You can retrieve the user-id from Webflow’s window.Webflow.push object and insert it as a hidden input in the form.
  • Example:
  • Add a hidden input field to your Webflow form:
    <input type="hidden" id="user-id" name="user_id">
  • Add the following JavaScript inside an Embed Code block:
    ```js
    document.addEventListener("DOMContentLoaded", () => {
    const userIdInput = document.getElementById("user-id");
    if (window.Webflow && window.Webflow.auth) {
    const userId = window.Webflow.auth.user.id;
    userIdInput.value = userId;
    }
    });
    ```
  • This assigns the logged-in user’s ID automatically when they submit the form.

2. Using Custom Authentication (JWT or Session Storage)

If Webflow Memberships is not available, you can:

  • Store user authentication details (e.g., JWT tokens) in localStorage or sessionStorage.
  • Retrieve and inject the value into a hidden form field before submission.

Example:

  • Assume a JWT stores { "user_id": "12345" }:
    ```js
    document.addEventListener("DOMContentLoaded", () => {
    const userIdInput = document.getElementById("user-id");
    const token = localStorage.getItem("auth_token"); // Retrieve stored token
    if (token) {
    const decodedToken = JSON.parse(atob(token.split('.')[1])); // Decode JWT
    userIdInput.value = decodedToken.user_id; // Assign user_id to form field
    }
    });
    ```

3. Using Webflow Forms with Zapier or Make (Integromat)

If direct JavaScript manipulation is not ideal:

  • Use Zapier or Make (Integromat) to capture form submissions.
  • Include user data in Webflow CMS or a backend database.
  • Connect Webflow to Google Sheets, Airtable, or Zapier’s database to associate file uploads with user data.

Summary

Webflow doesn’t natively support adding a logged-in user_id in forms, but you can:

  1. Use Webflow Memberships to insert the user-id.
  2. Store authentication tokens in local/session storage, then retrieve and append the user_id dynamically.
  3. Leverage third-party tools like Zapier to associate file uploads with user accounts.

Would you like code adjustments based on your authentication method?

Rate this answer

Other Webflow Questions