POST/api/expected-network-status/v2/compute
Body Parameters
View in API Reference
Request
1import requests
2
3# Compute for all in-network providers (POST /api/expected-network-status/v2/compute)
4response = 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
36print(response.json())
Response