Skip to main content
You can stand up a complete sandbox integration by following the steps below. Everything mirrors production contracts, so promoting to live just means pointing at the production base URL.

Request sandbox access

  1. Reach out to devrel@humanity.app with your organization name, redirect URIs, and required presets.
  2. We provision a developer tenant, client ID, and optional shared test token for Appendix D flows.
  3. Record the following secrets securely:
    • clientId (required in every OAuth request)
    • redirectUri (must match what you registered)
    • scopes / preset keys you plan to request
The welcome packet you receive after onboarding includes a ready-to-fill .env template plus example redirect URIs. Use those values locally and in CI—nothing from this repository is required.

Install and configure the SDK

Behind the scenes the SDK wraps the generated REST client, so every method maps one-to-one with the OpenAPI operations you see in the reference tab.

Complete the OAuth + preset verification loop

Prefer calling the HTTP endpoints directly? Mirror the same flow with /oauth/* and /presets/batch using the same base URLs and bearer tokens.

Where to go next

  • Review OAuth Scopes to understand the scope-based authorization model.
  • Review Environments & tooling for base URLs, feature flags, and health probes.
  • Browse the SDK guide for advanced helpers like consent polling and status feeds.
  • Try the Query Engine for declarative credential queries.
  • Explore the full API reference to see schemas, examples, and autogenerated snippets.