CONFIGURE THE CONNECTOR3 of 8
Configure the Connector
Set up authentication, endpoints, scopes, environments, secrets and other essential settings for your system.
Create
Project structure
3
Configure
4
Build
5
Test
6
Go live
Configuration is environment-specific. Use separate values for Sandbox and Production.
1
Authentication
OAuth 2.0 Client Credentials
Required scopes
patient.readpatient.writeobservation.read
2
Endpoints
Base URLhttps://api.yoursystem.com/v1
Token URLhttps://auth.yoursystem.com/oauth/token
FHIR Basehttps://api.yoursystem.com/fhir
3
Scopes & Permissions
patient.readRead patient demographic data
patient.writeCreate and update patients
observation.readRead observations & results
medication.readRead medications
appointment.writeCreate and manage appointments
4
Environment configuration
default.yamlsandbox.yamlproduction.yaml
yamlCopy
environment: sandbox
baseUrl: https://api-sandbox.yoursystem.com/v1
tokenUrl: https://auth-sandbox.yoursystem.com/oauth/token
timeout:
connect: 5000
request: 30000
retries:
maxAttempts: 3
backoff: exponential5
Secrets & credentials
Client ID••••••••••••••••
Client Secret••••••••••••••••
Private Keycertificate.pem
Secrets are encrypted and stored locally. Use environment variable references in your config files.
6
Advanced settings
Connect timeout5000 ms
Request timeout35000 ms
Max attempts3
Backoff strategyExponential
Enable request logging
Validate TLS certificates
Proxy configuration
Configuration looks good
All required settings are provided.