- A Partner ID, API Key, and API Secret from our Portal.
- The ability to add a server-side endpoint in your app’s API
- The ability to add or change HTML pages in your app’s UI
How it works
You will be adding a javascript<script> tag to your existing web application in order to load and display the Nmbr Component. The component is loaded in an iframe and sized to fit its container. You will need to ensure access to the page containing the component is sufficiently protected via authentication and authorization, as the Nmbr Component has no access to your front-end user information.
Security
Interacting with the Nmbr Component along with any API calls required to load or change data requires a signature created by your web server. Before making an API request, the component will use yoursigning endpoint to retrieve a signature to be sent with the API request. The Nmbr API automatically validates this signature to ensure secure communication between the Nmbr Component and the Nmbr API.
1 - Set up the Signing Endpoint
Install a JWT library
Nmbr Components use JSON Web Tokens (JWTs) signed on your server to prove a user is authorized to read and write payroll data. Their website features libraries in several languages, although some listed may be out of date.🙋 Don’t want to use a library? You may also implement signing yourself by following the JWT spec (RFC 7519).
Create a signing endpoint
Add an endpoint on your server to sign pre-formed JWTs. When you mount Nmbr Components in your app (step 2), this endpoint will be used to initialize the library.2 - Mount the Run Screen
The Nmbr Component uses a single script to securely initialize, load, and orchestrate UI from Nmbr’s servers inside your app.Install host.js
Download the script directly from Nmbr’s CDN
payroll.html
Initialize Nmbr Components
As soon as your page allows it, initializehost.js to start loading resources that will make the components load faster and smoother for your users.
payroll.html
Types
The type information for the configuration object passed tonmbr.initialize is as follows:
theme types, see the Theming page
For more information on the settings types, see the Customization page
Using Vite
If you’re using Vite, the importmap pattern won’t work. In dev mode, Vite tries to resolve package-name imports like@nmbrco/components from your local node_modules folder before the browser sees the importmap. Since @nmbrco/components is loaded from Nmbr’s CDN rather than installed as an npm package, Vite returns a 404.
If you’re using Vite, use this dynamic import instead of the importmap install and static import shown above. The full URL points directly at Nmbr’s CDN, so Vite doesn’t try the node_modules lookup:
payroll.html
Load the Run Payroll component
Once yourhost.js script is initialized, you may embed Nmbr’s Run Payroll component into any element on your page.
payroll.html
3 - Test your page
At this point, you have finished writing all code required to set up Nmbr Components. Let’s see it in action!Load the payroll page
Start by loading the page you set up in Step 2; you should see the embedded iframe start loading in your container. New companies will always start at the Company Setup screen; once they have completed setup the component will default to the Payroll Dashboard.Run a payroll in sandbox
Once you’ve confirmed the component is loading, it is time to submit data. To simulate payroll before you go live, import the sandbox version of the scripts and provide the additional optionsandbox: true for Nmbr Components. (You may also need to provide different partner credentials configured for the sandbox environment).
Congratulations!
You have successfully embedded Nmbr Components in your app. Consider next how else to customize your integration:- Mirror business, employee, and other data to Nmbr to pre-fill payroll fields

