Quickstart
Connect to Simpplr with Nango and see data flow in 2 minutes.1
Create the integration
In Nango (free signup), go to Integrations -> Configure New Integration -> Simpplr.
3
Call the Simpplr API
Let’s make your first request to the Simpplr B2B API (the connection test endpoint). Replace the placeholders below with your Environment API key, integration ID, and connection ID:Or fetch credentials with the Node SDK or API.Every B2B endpoint lives under
- cURL
- Node
/v1/b2b/, for example /v1/b2b/identity/users to list users and /v1/b2b/content/sites/contents to list content.You’re connected! Check the Logs tab in Nango to inspect requests.4
Implement Nango in your app
Follow our Auth implementation guide to integrate Nango in your app.To obtain your own production credentials, follow the connect guide linked below.
Simpplr integration guides
Nango-maintained guides for common use cases.- How do I link my Simpplr account? Connect your Simpplr account using the Connect UI
- Simpplr B2B API reference
- Creating the client application
- Generating an access token for the B2B API
Pre-built syncs & actions for Simpplr
Enable them in your dashboard. Extend and customize to fit your needs. No pre-built syncs or actions available yet.API gotchas
- Simpplr runs two different products. This integration is for Simpplr’s own platform, documented at platform.simpplr.com. Older tenants run as a managed package inside the customer’s Salesforce org and authenticate through Salesforce; use the
salesforceintegration for those. - The API host is per region, and the tenant’s OAuth token URL is the only place the region is stated:
platform.app.simpplr.com(United States),platform.eu.simpplr.com,platform.au.simpplr.comandplatform.ca.simpplr.com. A wrong Region points the connection at another region’s tenant. - Simpplr’s published B2B OpenAPI gives its token URL as
https://platform.{env}.simpplr.xyz/v1/identity/oauth/token. The working domain is.com, so a client generated from that spec calls a host that does not resolve. - The token response carries only
access_token, with noexpires_in. The access token is itself a JWT, so Nango decodes it and reads itsexpclaim to determine the real expiry. - Tokens are read-only unless a scope is requested. Simpplr accepts
read(the default),writeandeverything, andreadcovers GET calls plus the search endpoints that take a POST body. Simpplr grants whichever scope the token request asks for, so a client application is not limited to read access by how it was created. - The B2B API covers tenant-level access. Simpplr’s separate User API acts for a signed-in user and expects an authorization code exchange whose token body names the code
auth_code, which this integration does not use. GET /v1/b2b/identity/testis the cheapest call for checking a connection.- Paging differs by endpoint. The content and sites endpoints page with
sizeandnextPageToken, butGET /v1/b2b/identity/usersrejects both with a 400. - Content
bodyis HTML, not markdown or plain text.
Contribute API gotchas by editing this page