Manage your healthcare network. Register providers, set their status, and attach pricing contracts that govern how claims from each facility are validated and reimbursed.
/providersList all providers for the tenant
providers:read/providersRegister a new provider
providers:write/providers/:idGet a single provider by ID
providers:read/providers/:idUpdate provider status or details
providers:writeReturns all providers for your tenant.
/providerscurl -X POST http://localhost:8000/api/v1/providers \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "General Hospital Lagos",
"code": "GHL-001",
"provider_type": "hospital",
"tier": "tier1",
"status": "active"
}'/providers/:idcurl -X PATCH http://localhost:8000/api/v1/providers/{provider_id} \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"status": "suspended"}'| Status | Meaning |
|---|---|
| active | Provider can submit claims; pricing contracts apply |
| suspended | Provider on hold; new claims are blocked |
| inactive | Provider deactivated; no claims accepted |