Quickstart
Make your first authenticated request
Set up an OAuth client, obtain a token, and retrieve tenant-scoped data in a few minutes.
Read quickstartUnionStack Developer Platform
Use secure, tenant-aware APIs to connect people, cases, communications, and reporting into the tools your teams already use.
cases.js
const response = await fetch(
`${baseUrl}/api/Cases/${typeId}`,
{
headers: {
Authorization: `Bearer ${accessToken}`
}
}
);
const cases = await response.json();
Tenant-scoped case records returned
One platform for your organization’s connected work
Get started
Everything you need to plan a reliable UnionStack integration—without needing to sift through internal product endpoints.
Quickstart
Set up an OAuth client, obtain a token, and retrieve tenant-scoped data in a few minutes.
Read quickstartConcepts
Understand how identity, roles, and data access work together across your integration.
Read the guideReference
Browse every endpoint currently documented by UnionStack WebServices.
Browse referenceAuthentication
UnionStack integrations use OAuth 2.0 authorization code flow with PKCE. Administrators generate credentials from the API Credentials page in UnionStack, and access remains scoped to the organization that created them.
Browse authenticated endpointsGenerate a client ID and secret from UnionStack’s API Credentials settings.
Let an authorized UnionStack user consent to the requested access.
Use the returned access token for the resources available to that user.
API reference
Browse the complete set of Swagger/OpenAPI documents published by UnionStack WebServices. Each request requires a valid access token and is evaluated within the caller’s tenant and permissions.
Built for trust
Tenant-aware by defaultRequests are scoped to the organization that granted access.
Permission-respectingAPI access follows the authenticated user’s approved role and access rules.
Credentials stay privateClient secrets are issued once and should be stored in your secure secret manager.
Build with UnionStack
Use the full API reference to plan your implementation, generate credentials from UnionStack, and begin building.