- AuthV2
- Billing NotesV2
- Charge Capture BundlesV1
- Charge CaptureV1
- ContractsV2
- CredentialingV2
- Custom SchemasV1
- EligibilityV2
- Encounter ProvidersV2
- PATCHUpdate Referring Provider
- PATCHUpdate Initial Referring Provider
- PATCHUpdate Supervising Provider
- PATCHUpdate Ordering Provider
- POSTCreate Referring Provider
- POSTCreate Initial Referring Provider
- POSTCreate Supervising Provider
- POSTCreate Ordering Provider
- DELDelete Referring Provider
- DELDelete Initial Referring Provider
- DELDelete Supervising Provider
- DELDelete Ordering Provider
- EncountersV4
- Expected Network StatusV1
- Expected Network StatusV2
- ExportsV3
- External Payment Account ConfigV1
- Fee SchedulesV3
- GuarantorV1
- Import InvoiceV1
- Insurance AdjudicationsV1
- Insurance PaymentsV1
- Insurance RefundsV1
- Medication DispenseV1
- Non Insurance Payer PaymentsV1
- Non Insurance Payer RefundsV1
- Non Insurance PayersV1
- Organization Service FacilitiesV2
- Organization ProvidersV3
- Patient PaymentsV4
- Patient RefundsV1
- PayersV3
- Service LinesV2
- TasksV3
- Write OffsV1
- Pre EncounterAppointmentsV1
- Pre EncounterCoveragesV1
- Pre EncounterEligibility ChecksV1
- Pre EncounterListsV1
- Pre EncounterNotesV1
- Pre EncounterPatientsV1
- Pre EncounterTagsV1
- Diagnoses
- Service Facility
Request
1 import requests 2 3 # Compute for all in-network providers (POST /api/expected-network-status/v2/compute) 4 response = requests.post( 5 "https://api.joincandidhealth.com/api/expected-network-status/v2/compute", 6 headers={ 7 "Authorization": "Bearer ", 8 "Content-Type": "application/json" 9 }, 10 json={ 11 "service_type": "new_patient_video_appt", 12 "place_of_service_code": "01", 13 "subscriber_information": { 14 "payer_uuid": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", 15 "member_id": "string", 16 "insurance_type": { 17 "line_of_business": "medicare", 18 "insurance_type_codes": { 19 "type": "insurance_type_code", 20 "value": "01" 21 } 22 } 23 }, 24 "patient_address": { 25 "address1": "string", 26 "city": "string", 27 "state": "AA", 28 "zip_code": "string" 29 }, 30 "billing_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", 31 "organization_service_facility_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", 32 "date_of_service": "2023-01-01" 33 }, 34 ) 35 36 print(response.json())
Response