Getting your API keys
Before you can call the API, you must generate credentials from the TeamCare web application:- Log in to app.teamcaredental.com.
- Navigate to Settings > Company > Agreement and accept the Developer API Agreement. Only the account owner can perform this step.
- Go to Settings > Company > API Access and generate your API keys.
- Copy your
client_idandclient_secret. The secret is shown once and cannot be retrieved again.
Requesting a token
To obtain a Bearer Token, send yourclient_id and client_secret to the token endpoint.
Request parameters
string
required
Your API client identifier, generated in the dashboard.
string
required
Your API client secret, shown once during key generation.
Response fields
string
A JWT Bearer Token valid for 6 hours. Include this in the
Authorization: Bearer <token> header on all subsequent requests.Using the token
Include the token in the Authorization header of every request to protected endpoints.Cache your token and reuse it for the full 6 hour lifetime. Calling the token endpoint for every request will exhaust the 10 requests per minute per IP limit and cause avoidable 429 errors.

