rocketQuickstart

Follow these easy steps to start using InboxComponents

Step 1: Create an account

Go to app.inboxcomponents.comarrow-up-right and sign up for an account. Once you're logged in, you’ll have access to your dashboard where you can manage API keys, components, and clients.

Step 2: Create an API Key

In your dashboard, navigate to the API Keysarrow-up-right section and click Generate token. Store this key securely—you’ll need it to authenticate API requests.

Step 3: Create a component

Go to the Componentsarrow-up-right section and click Create component. This will generate a componentId that uniquely identifies your inbox widget.

Step 4: Create a client

Next, go to the Clientsarrow-up-right section in the dashboard and click Create client. This links a specific user or tenant to your component.

Step 5: Request a token

With your API Key, componentId, and clientId in hand, request a secure token using the API. Tokens are currently valid for 8 hours.

curl -X POST https://app.inboxcomponents.com/authentication/login_check \
     -H "Content-Type: application/json" \
     -H "X-API-KEY: YOUR_API_KEY" \
     -d '{
       "componentId": "YOUR_COMPONENT_ID",
       "clientId": "YOUR_CLIENT_ID"
     }'

Response:

Save the token—you’ll need it in the next step. Make sure you keep the token safe.

Step 6: Embed the component

Add the following HTML snippet to your page and replace [[ TOKEN ]] with your actual token. The token will be refreshed by the component.

circle-exclamation

🎉 All set!

Your InboxComponents widget is now live! If you have questions or run into issues, check out the rest of the docs, contact supportenvelope, or join our Slack communityarrow-up-right.

Last updated