Introduction
What the Resolved developer platform is and how apps connect to it.
The Resolved developer platform lets you build apps and integrations on top of the same API that powers Resolved. Apps are distributed through the Resolved App Store, where a customer installs your app and grants it a set of scopes.
This documentation covers how to authenticate, how to call the API, and how to react to changes with webhooks.
What you can build
- Integrations that sync case files, invoices, payments and debtors with external accounting or CRM systems.
- Internal tooling that reads or writes data on behalf of a customer, within the scopes they approved.
- Automation that reacts to webhook events (for example confirmed client payments).
How it fits together
Every app is registered once and then installed per customer. Installation produces an OAuth grant scoped to exactly the data the app asked for and the customer approved.
An app never has blanket access. It only ever sees the administrations and data covered by the scopes the customer granted at install time.
Before you start
You will need a developer account and a registered app. Once you have those, continue with Authentication to obtain an access token, then Making requests to call the API.