Platform for builders
One API fabric across CRM, HRMS, and HMIS.
Shared identity, events, and webhooks across the portfolio. Bring your own stack—SDKs, OpenAPI, and sandboxes are ready.
What ships
A unified surface for every product.
Consistent auth, schemas, events, and observability. Build once, reuse everywhere.
OpenAPI + SDKs
OpenAPI 3.0 specs with TypeScript SDKs and Postman collections.
Events + webhooks
Standardized event names across CRM, HRMS, and HMIS with retries and signing.
Identity + RBAC
Single identity, SSO, SCIM, and fine-grained roles shared across products.
Sandbox tenants
Per-product sandboxes seeded with sample data to prototype integrations.
Observability
Request logs, audit trails, and metrics dashboards for every API key.
Compliance
Encryption in transit/at rest, PHI/PII handling patterns, and data residency options.
Getting started
Authenticate once, work across products.
Use the same auth flow for CRM, HRMS, and HMIS APIs. Tokens scope access by product and role.
// Exchange credentials for a portfolio-scoped token
fetch('https://api.peopletide.com/auth/token', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
client_id: 'YOUR_CLIENT_ID',
client_secret: 'YOUR_SECRET',
scope: ['crm.read', 'hrms.write', 'emr.read'],
})
}).then(res => res.json()).then(({ access_token }) => {
console.log(access_token);
});// Reuse the same token across products
fetch('https://api.peopletide.com/crm/opportunities?stage=proposal', {
headers: { Authorization: 'Bearer YOUR_TOKEN' }
}).then(res => res.json()).then(console.log);Example flows
Stitch products without glue code.
A few common cross-product automations using events and webhooks.
CRM → HRMS handoff
- Listen for `crm.opportunity.closed_won` webhook.
- Create a hiring requisition in HRMS via `/hrms/requisitions`.
- Kick off onboarding workflow with approvals.
HMIS → Patient experience sync
- Subscribe to `hmis.care_plan.updated` events.
- Push plan summary to patient experience endpoints via `/hmis/portal/plans`.
- Notify patient with secure message + audit trail.
Access provisioning
- Use SCIM to provision users once.
- Apply role templates across CRM, HRMS, HMIS.
- Validate with `/identity/audit` logs.
Analytics pipeline
- Stream events to your warehouse via webhooks.
- Join CRM pipeline, HR headcount, and HMIS visit data.
- Build cross-product dashboards without custom ETL.
peopletide.com
Need deeper docs or sandbox access?
We provide Postman collections, SDKs, and example repos for CRM, HRMS, and HMIS.