Submit Wholesale Application
Shopify Storefront data and cart logic is bound to your Webflow elements through Shopyflow attributes. Connecting your Webflow site to Shopify is done by adding custom attributes to your Webflow elements.
Yet, you are not required to type or edit attributes manually. Shopyflow provides you with the pre-configured components needed to create your store, as copyable Webflow elements right in Webflow designer.
All the copyable Shopyflow Components are native editable Webflow elements. There is no layout or styling limitation on any element.
In the below image hover your mouse on the hotspots to see all the required Shopyflow attributes to build a product page like this in Webflow

Method that submits a wholesale account application programmatically for fully custom form UIs.
Article Type: Method
Method: shopyflowWholesale.submitApplication(options)
Returns: A promise resolving to a result object
Use shopyflowWholesale.submitApplication(options) when you build your own application UI instead of the attribute-driven Wholesale Application Form. The method posts the application to the Storesynk app and resolves when the backend responds.
The options object accepts three properties. group is the tag of the customer group the application belongs to, the same value the Wholesale Application Form carries in its attribute; the application lands in that group's queue in the Storesynk app. fields is a record mapping property names to values, the same data that custom fields collect from the DOM, for example a Company Name key with the applicant's company as its value. email is the applicant email: it is required for guests and ignored when a customer is logged in, since the applicant's identity then comes from their session. Whether guest applications are accepted is controlled per customer group, in the group's application settings in the Storesynk app.
The returned promise resolves to an object with a success boolean and either a message (on success) or an error (on failure). Check success to decide which state your custom UI should show. When an application is approved in the Storesynk app, the customer immediately receives the group's tag and sees wholesale prices on their next login.
For the full storefront setup, see How to sell wholesale in Webflow with Storesynk.