563848e0ecc0
Fetch a single contract by its ID
Returns a single Contract identified by its server-assigned id.
When to use: Use this endpoint when you already hold a specific contract id (returned by a prior create, replace, or list call) and need the full record. To search or page through all contracts for a tenant, use GET /contracts instead.
Preconditions: Requires the READ_CONTRACT permission. The tenant-id header must identify the tenant the contract belongs to. The {id} path parameter is the server-assigned id field (a distinct value from documentId, which is a caller-supplied identifier).
Response: Returns the full Contract object, including its generalInfo, lifecycle, financial, administrativeAndLegal, and clinicalAndQuality sections. This operation is safe and idempotent; it makes no changes.
Path parameters
Server-assigned id of the Contract to fetch (not the documentId).
Headers
Tenant ID used to scope the lookup to the caller's tenant.
Response
The Contract identified by id, with all composite sections populated as stored.
Example response
{
"id": "ctr_8a2f3e91",
"planId": "plan_40921",
"networkId": "network_58213",
"documentId": "doc_2026_04821",
"createdBy": "user_30172",
"updatedBy": "user_58890",
"generalInfo": {
"contractId": "GC-2026-0417",
"contractName": "Acme Health Network FFS Agreement",
"contractTemplate": "Standard FFS Template v3",
"contractRate": "100% Medicare",
"reimbursementCode": "RC-1042",
"contractType": "FFS",
"contractStatus": "Active",
"contractAgreementType": "Single",
"groupId": "group_12345",
"networkId": "network_58213",
"planId": "plan_40921"
},
"lifecycle": {
"contractEffectiveDate": "2026-01-01",
"initialTermDate": "2027-01-01",
"terminationInformedDate": "2026-11-01",
"terminationDate": "2026-12-31",
"billingEffectiveDate": "2026-01-01",
"billingTerminationDate": "2026-12-31"
},
"financial": {
"feeSchedule": "Medicare FFS 2026",
"contractPaymentType": "Per Claim",
"providerRateCalculation": "Standard Medicare fee schedule",
"claimSubmissionCycle": "Monthly"
},
"administrativeAndLegal": {
"practitionersTerminationNoticePeriod": "90",
"providersManualUpdatesNoticePeriod": "60",
"claimFilingLimit": "180 days from date of service",
"reimbursementScheduleUpdateFrequency": "Quarterly",
"timelyPaymentCommitment": 30
},
"clinicalAndQuality": {
"averageStarsAndPmpmBonus": "4.5 stars / $10 PMPM",
"performanceReportingRequirements": "Quarterly HEDIS and CAHPS reporting",
"recredentialingInterval": "3 yr",
"providerRosterUpdateFrequency": "Monthly"
}
}