From 1b18dc5885452aed7c1fcf3c7a6c0935823165a2 Mon Sep 17 00:00:00 2001 From: Andrew Jiang Date: Thu, 9 May 2024 20:41:05 -0400 Subject: [PATCH] fix: fdr generates stream examples correctly (#822) --- .../examples/generateEndpointExampleCall.ts | 21 +- .../db/examples/generateHttpBodyExample.ts | 41 +- ...estTransformApiDefinitionToDb.test.ts.snap | 5187 +---------------- 3 files changed, 194 insertions(+), 5055 deletions(-) diff --git a/packages/fdr-sdk/src/converters/db/examples/generateEndpointExampleCall.ts b/packages/fdr-sdk/src/converters/db/examples/generateEndpointExampleCall.ts index 6c4c273fe8..bbbd07c459 100644 --- a/packages/fdr-sdk/src/converters/db/examples/generateEndpointExampleCall.ts +++ b/packages/fdr-sdk/src/converters/db/examples/generateEndpointExampleCall.ts @@ -46,10 +46,7 @@ export function generateEndpointNonStreamResponseExample({ return { ...generateBaseEndpointExample({ endpointDefinition, apiDefinition, resolveTypeById }), responseStatusCode: 200, - responseBodyV3: { - type: "json", - value: generateHttpResponseBodyExample(nonStreamResponse.shape, resolveTypeById), - }, + responseBodyV3: generateHttpResponseBodyExample(nonStreamResponse.shape, resolveTypeById), }; } @@ -64,15 +61,10 @@ export function generateEndpointStreamResponseExample({ }): APIV1Write.ExampleEndpointCall { const resolveTypeById = getResolveByTypeId(apiDefinition); - const responseChunkExample = generateHttpResponseBodyExample(streamResponse.shape, resolveTypeById); return { ...generateBaseEndpointExample({ endpointDefinition, apiDefinition, resolveTypeById }), responseStatusCode: 200, - responseBodyV3: { - type: "stream", - value: responseChunkExample != null ? [responseChunkExample, responseChunkExample] : [], - }, - responseBody: undefined, + responseBodyV3: generateHttpResponseBodyExample(streamResponse.shape, resolveTypeById), }; } @@ -87,16 +79,9 @@ export function generateEndpointSuccessExample({ return { ...generateBaseEndpointExample({ endpointDefinition, apiDefinition, resolveTypeById }), responseStatusCode: 200, - responseBody: - endpointDefinition.response != null - ? generateHttpResponseBodyExample(endpointDefinition.response.type, resolveTypeById) - : undefined, responseBodyV3: endpointDefinition.response != null - ? { - type: "json", - value: generateHttpResponseBodyExample(endpointDefinition.response.type, resolveTypeById), - } + ? generateHttpResponseBodyExample(endpointDefinition.response.type, resolveTypeById) : undefined, }; } diff --git a/packages/fdr-sdk/src/converters/db/examples/generateHttpBodyExample.ts b/packages/fdr-sdk/src/converters/db/examples/generateHttpBodyExample.ts index afa4a75957..af62905cc2 100644 --- a/packages/fdr-sdk/src/converters/db/examples/generateHttpBodyExample.ts +++ b/packages/fdr-sdk/src/converters/db/examples/generateHttpBodyExample.ts @@ -111,24 +111,45 @@ function generateHttpJsonRequestBodyExample( export function generateHttpResponseBodyExample( type: APIV1Write.HttpResponseBodyShape, resolveTypeById: ResolveTypeById, -): unknown { +): APIV1Write.ExampleEndpointResponse | undefined { switch (type.type) { case "object": - return generateExampleObject(type, resolveTypeById, false, new Set(), 0); + return { + type: "json", + value: generateExampleObject(type, resolveTypeById, false, new Set(), 0), + }; case "reference": - return generateExampleFromTypeReference(type.value, resolveTypeById, false, new Set(), 0); + return { + type: "json", + value: generateExampleFromTypeReference(type.value, resolveTypeById, false, new Set(), 0), + }; case "fileDownload": - return ""; + return { type: "filename", value: "" }; case "streamingText": - return "example-text"; case "streamCondition": - return "example-text"; + return { type: "stream", value: ["example-text"] }; case "stream": { switch (type.shape.type) { - case "object": - return generateExampleObject(type.shape, resolveTypeById, false, new Set(), 0); - case "reference": - return generateExampleFromTypeReference(type.shape.value, resolveTypeById, false, new Set(), 0); + case "object": { + const chunk = generateExampleObject(type.shape, resolveTypeById, false, new Set(), 0); + return { + type: "stream", + value: [chunk, chunk], + }; + } + case "reference": { + const chunk = generateExampleFromTypeReference( + type.shape.value, + resolveTypeById, + false, + new Set(), + 0, + ); + return { + type: "stream", + value: [chunk, chunk], + }; + } } } } diff --git a/servers/fdr/src/__test__/unit-tests/transform/__snapshots__/testTransformApiDefinitionToDb.test.ts.snap b/servers/fdr/src/__test__/unit-tests/transform/__snapshots__/testTransformApiDefinitionToDb.test.ts.snap index 6189563ec1..c78c992313 100644 --- a/servers/fdr/src/__test__/unit-tests/transform/__snapshots__/testTransformApiDefinitionToDb.test.ts.snap +++ b/servers/fdr/src/__test__/unit-tests/transform/__snapshots__/testTransformApiDefinitionToDb.test.ts.snap @@ -130,19 +130,7 @@ the current organization_id of the authenticated user }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "adjustment_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "adjustment_note": "string", - "amount_cents": 0, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "ERA", - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -309,13 +297,7 @@ authenticated user, then response code of 403 will be returned "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "adjustment_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "adjustment_note": "string", - "amount_cents": 0, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "ERA", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -422,13 +404,7 @@ the current organization_id of the auathenticated user. Otherwise, response code "source": "ERA", }, }, - "responseBody": { - "adjustment_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "adjustment_note": "string", - "amount_cents": 0, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "ERA", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -527,13 +503,7 @@ current organization_id, then a response code of \`403\` will be returned. "type": "json", "value": {}, }, - "responseBody": { - "adjustment_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "adjustment_note": "string", - "amount_cents": 0, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "ERA", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -809,11 +779,7 @@ current organization_id, then a response code of \`403\` will be returned. "client_secret": "string", }, }, - "responseBody": { - "access_token": "string", - "expires_in": 0, - "token_type": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -962,14 +928,7 @@ current organization_id, then a response code of \`403\` will be returned. "text": "string", }, }, - "responseBody": { - "author_auth0_id": "string", - "author_name": "string", - "billing_note_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "created_at": "2023-01-01T00:00:00Z", - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "text": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -1201,20 +1160,7 @@ current organization_id, then a response code of \`403\` will be returned. }, }, }, - "responseBody": { - "results": [ - { - "claim_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "claim_metadata": { - "date_of_service": "2023-01-01", - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_first_name": "string", - "patient_last_name": "string", - }, - "type": "success", - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -1338,20 +1284,7 @@ current organization_id, then a response code of \`403\` will be returned. }, }, }, - "responseBody": { - "results": [ - { - "claim_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "claim_metadata": { - "date_of_service": "2023-01-01", - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_first_name": "string", - "patient_last_name": "string", - }, - "type": "success", - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -1525,11 +1458,7 @@ current organization_id, then a response code of \`403\` will be returned. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "chargemaster_ids": [ - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -1805,373 +1734,7 @@ current organization_id, then a response code of \`403\` will be returned. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "content": { - "box_10_patient_condition_related_to": { - "box_10_a_employment": true, - "box_10_b_auto_accident": true, - "box_10_b_auto_accident_state": "string", - "box_10_c_other_accident": true, - "box_10_d_claim_codes": "string", - }, - "box_11_insured": { - "box_11_a_date_of_birth": { - "day": "string", - "month": "string", - "year": "string", - }, - "box_11_a_sex": "M", - "box_11_b_other_claim_id_number": "string", - "box_11_b_other_claim_id_qual": "string", - "box_11_c_insurance_plan_or_program_name": "string", - "box_11_d_another_health_benefit_plan": true, - "box_11_policy_group_or_feca_number": "string", - }, - "box_12_patient_or_authorized_signature": { - "date": "string", - "signature": "string", - }, - "box_13_insured_or_authorized_signature": "string", - "box_14_date_of_current_condition": { - "date": { - "day": "string", - "month": "string", - "year": "string", - }, - "qual": "string", - }, - "box_15_other_date": { - "date": { - "day": "string", - "month": "string", - "year": "string", - }, - "qual": "string", - }, - "box_16_dates_patient_unable_to_work": { - "from": { - "day": "string", - "month": "string", - "year": "string", - }, - "to": { - "day": "string", - "month": "string", - "year": "string", - }, - }, - "box_17_referring_provider": { - "box_17_a_id_number": "string", - "box_17_a_id_qual": "string", - "box_17_b_npi": "string", - "box_17_name": "string", - "box_17_qual": "string", - }, - "box_18_hospitalization_dates": { - "from": { - "day": "string", - "month": "string", - "year": "string", - }, - "to": { - "day": "string", - "month": "string", - "year": "string", - }, - }, - "box_19_additional_claim_info": "string", - "box_1_a_insured_id_number": "string", - "box_1_insurance_type": "MEDICARE", - "box_20_outside_lab": { - "charges": "string", - "outside_lab": true, - }, - "box_21_diagnoses": { - "box_21_a": "string", - "box_21_b": "string", - "box_21_c": "string", - "box_21_d": "string", - "box_21_e": "string", - "box_21_f": "string", - "box_21_g": "string", - "box_21_h": "string", - "box_21_i": "string", - "box_21_j": "string", - "box_21_k": "string", - "box_21_l": "string", - "icd_ind": "string", - }, - "box_22_resubmission": { - "code": "string", - "original_ref_no": "string", - }, - "box_23_prior_authorization_number": "string", - "box_24_service_lines": { - "service_line_1": { - "box_24_a_from": { - "day": "string", - "month": "string", - "year": "string", - }, - "box_24_a_to": { - "day": "string", - "month": "string", - "year": "string", - }, - "box_24_b_place_of_service": "string", - "box_24_c_emg": "string", - "box_24_d_modifier": { - "modifier_1": "string", - "modifier_2": "string", - "modifier_3": "string", - "modifier_4": "string", - }, - "box_24_d_procedure_code": "string", - "box_24_e_diagnosis_pointer": "string", - "box_24_f_charges": "string", - "box_24_g_days_or_units": "string", - "box_24_h_epsdt": "string", - "box_24_h_family_plan": "string", - "box_24_i_id_qual": "string", - "box_24_j_id_number": "string", - "box_24_j_rendering_provider_npi": "string", - "box_24_suppl": "string", - }, - "service_line_2": { - "box_24_a_from": { - "day": "string", - "month": "string", - "year": "string", - }, - "box_24_a_to": { - "day": "string", - "month": "string", - "year": "string", - }, - "box_24_b_place_of_service": "string", - "box_24_c_emg": "string", - "box_24_d_modifier": { - "modifier_1": "string", - "modifier_2": "string", - "modifier_3": "string", - "modifier_4": "string", - }, - "box_24_d_procedure_code": "string", - "box_24_e_diagnosis_pointer": "string", - "box_24_f_charges": "string", - "box_24_g_days_or_units": "string", - "box_24_h_epsdt": "string", - "box_24_h_family_plan": "string", - "box_24_i_id_qual": "string", - "box_24_j_id_number": "string", - "box_24_j_rendering_provider_npi": "string", - "box_24_suppl": "string", - }, - "service_line_3": { - "box_24_a_from": { - "day": "string", - "month": "string", - "year": "string", - }, - "box_24_a_to": { - "day": "string", - "month": "string", - "year": "string", - }, - "box_24_b_place_of_service": "string", - "box_24_c_emg": "string", - "box_24_d_modifier": { - "modifier_1": "string", - "modifier_2": "string", - "modifier_3": "string", - "modifier_4": "string", - }, - "box_24_d_procedure_code": "string", - "box_24_e_diagnosis_pointer": "string", - "box_24_f_charges": "string", - "box_24_g_days_or_units": "string", - "box_24_h_epsdt": "string", - "box_24_h_family_plan": "string", - "box_24_i_id_qual": "string", - "box_24_j_id_number": "string", - "box_24_j_rendering_provider_npi": "string", - "box_24_suppl": "string", - }, - "service_line_4": { - "box_24_a_from": { - "day": "string", - "month": "string", - "year": "string", - }, - "box_24_a_to": { - "day": "string", - "month": "string", - "year": "string", - }, - "box_24_b_place_of_service": "string", - "box_24_c_emg": "string", - "box_24_d_modifier": { - "modifier_1": "string", - "modifier_2": "string", - "modifier_3": "string", - "modifier_4": "string", - }, - "box_24_d_procedure_code": "string", - "box_24_e_diagnosis_pointer": "string", - "box_24_f_charges": "string", - "box_24_g_days_or_units": "string", - "box_24_h_epsdt": "string", - "box_24_h_family_plan": "string", - "box_24_i_id_qual": "string", - "box_24_j_id_number": "string", - "box_24_j_rendering_provider_npi": "string", - "box_24_suppl": "string", - }, - "service_line_5": { - "box_24_a_from": { - "day": "string", - "month": "string", - "year": "string", - }, - "box_24_a_to": { - "day": "string", - "month": "string", - "year": "string", - }, - "box_24_b_place_of_service": "string", - "box_24_c_emg": "string", - "box_24_d_modifier": { - "modifier_1": "string", - "modifier_2": "string", - "modifier_3": "string", - "modifier_4": "string", - }, - "box_24_d_procedure_code": "string", - "box_24_e_diagnosis_pointer": "string", - "box_24_f_charges": "string", - "box_24_g_days_or_units": "string", - "box_24_h_epsdt": "string", - "box_24_h_family_plan": "string", - "box_24_i_id_qual": "string", - "box_24_j_id_number": "string", - "box_24_j_rendering_provider_npi": "string", - "box_24_suppl": "string", - }, - "service_line_6": { - "box_24_a_from": { - "day": "string", - "month": "string", - "year": "string", - }, - "box_24_a_to": { - "day": "string", - "month": "string", - "year": "string", - }, - "box_24_b_place_of_service": "string", - "box_24_c_emg": "string", - "box_24_d_modifier": { - "modifier_1": "string", - "modifier_2": "string", - "modifier_3": "string", - "modifier_4": "string", - }, - "box_24_d_procedure_code": "string", - "box_24_e_diagnosis_pointer": "string", - "box_24_f_charges": "string", - "box_24_g_days_or_units": "string", - "box_24_h_epsdt": "string", - "box_24_h_family_plan": "string", - "box_24_i_id_qual": "string", - "box_24_j_id_number": "string", - "box_24_j_rendering_provider_npi": "string", - "box_24_suppl": "string", - }, - }, - "box_25_federal_tax_id_number": { - "id_number": "string", - "id_qual": "SSN", - }, - "box_26_patient_account_no": "string", - "box_27_accepts_assignment": true, - "box_28_total_charge": { - "total_charges": "string", - "two_seventy_six": true, - }, - "box_29_amount_paid": "string", - "box_2_patient_name": "string", - "box_31_physician_or_supplier_signature": { - "date": "string", - "signature": "string", - }, - "box_32_service_facility_info": { - "box_32": { - "address": "string", - "city_state_zip": "string", - "name": "string", - }, - "box_32_a_npi": "string", - "box_32_b_other_id_number": "string", - }, - "box_33_billing_provider_info": { - "box_33": { - "address": "string", - "city_state_zip": "string", - "name": "string", - }, - "box_33_a_npi": "string", - "box_33_b_other_id_number": "string", - "phone_number": { - "area_code": "string", - "prefix_and_line_number": "string", - }, - }, - "box_3_patient": { - "date_of_birth": { - "day": "string", - "month": "string", - "year": "string", - }, - "sex": "M", - }, - "box_4_insured_name": "string", - "box_5_patient_address": { - "address": "string", - "city": "string", - "state": "string", - "telephone": { - "area_code": "string", - "prefix_and_line_number": "string", - }, - "zip_code": "string", - }, - "box_6_patient_relationship_to_insured": "SELF", - "box_7_insured_address": { - "address": "string", - "city": "string", - "state": "string", - "telephone": { - "area_code": "string", - "prefix_and_line_number": "string", - }, - "zip_code": "string", - }, - "box_8_reserved_for_nucc_use": "string", - "box_9_other_insured": { - "box_9_a_policy_or_group_number": "string", - "box_9_b_reserved_for_nucc_use": "string", - "box_9_c_reserved_for_nucc_use": "string", - "box_9_d_insurance_plan_or_program_name": "string", - "box_9_name": "string", - }, - "header_insurance_info": { - "address_1": "string", - "address_2": "string", - "city_state_zip": "string", - "name": "string", - }, - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -2789,20 +2352,7 @@ current organization_id, then a response code of \`403\` will be returned. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "claim_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "service_line_adjudication_details": { - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32": { - "adjudication_match_results": { - "type": "adjudication_match_results", - "value": { - "type": "no_adjudication_details", - }, - }, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -3048,14 +2598,7 @@ current organization_id, then a response code of \`403\` will be returned. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": [ - { - "description": "string", - "disabled": true, - "disabled_explanation": "string", - "status": "biller_received", - }, - ], + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": [ @@ -3546,27 +3089,7 @@ current organization_id, then a response code of \`403\` will be returned. }, }, }, - "responseBody": { - "description": "string", - "is_enabled": true, - "name": "string", - "rule_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "scope": { - "phase_id": "string", - "pipeline_id": "string", - "step_id": "string", - "type": "step_locator", - }, - "statement": { - "action": { - "type": "hold_claim", - }, - "condition": { - "conditions": [], - "type": "and", - }, - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -3947,30 +3470,7 @@ current organization_id, then a response code of \`403\` will be returned. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "supported_comparisons": [ - { - "comparator": { - "comparator": "IS_EQUAL_TO", - "display_name": "string", - }, - "lhs": { - "type": "primitive", - "value": { - "type": "native_primitive", - "value": "INTEGER", - }, - }, - "rhs": { - "type": "primitive", - "value": { - "type": "native_primitive", - "value": "INTEGER", - }, - }, - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -4110,27 +3610,7 @@ current organization_id, then a response code of \`403\` will be returned. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "description": "string", - "is_enabled": true, - "name": "string", - "rule_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "scope": { - "phase_id": "string", - "pipeline_id": "string", - "step_id": "string", - "type": "step_locator", - }, - "statement": { - "action": { - "type": "hold_claim", - }, - "condition": { - "conditions": [], - "type": "and", - }, - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -4469,27 +3949,7 @@ current organization_id, then a response code of \`403\` will be returned. "type": "json", "value": {}, }, - "responseBody": { - "description": "string", - "is_enabled": true, - "name": "string", - "rule_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "scope": { - "phase_id": "string", - "pipeline_id": "string", - "step_id": "string", - "type": "step_locator", - }, - "statement": { - "action": { - "type": "hold_claim", - }, - "condition": { - "conditions": [], - "type": "and", - }, - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -5138,29 +4598,7 @@ current organization_id, then a response code of \`403\` will be returned. }, }, }, - "responseBody": { - "available_actions": [ - { - "action": { - "type": "hold_claim_available_action", - }, - "description": "string", - "display_name": "string", - }, - ], - "inputs": { - "description": "string", - "display_name": "string", - "field_type": { - "type": "primitive", - "value": { - "type": "native_primitive", - "value": "INTEGER", - }, - }, - "name": "string", - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -5465,11 +4903,7 @@ current organization_id, then a response code of \`403\` will be returned. }, }, }, - "responseBody": { - "result": { - "type": "success", - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -5856,28 +5290,7 @@ current organization_id, then a response code of \`403\` will be returned. }, }, }, - "responseBody": { - "description": "string", - "name": "string", - "rules_used_in": [ - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - ], - "type": { - "type": "primitive", - "value": { - "type": "native_primitive", - "value": "INTEGER", - }, - }, - "value": { - "type": "primitive_value", - "value": { - "type": "integer", - "value": 0, - }, - }, - "variable_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -6126,23 +5539,7 @@ current organization_id, then a response code of \`403\` will be returned. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": [ - { - "description": "string", - "name": "string", - "rules_used_in": [ - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - ], - "type": { - "type": "primitive", - "value": { - "type": "native_primitive", - "value": "INTEGER", - }, - }, - "variable_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - ], + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": [ @@ -6278,28 +5675,7 @@ current organization_id, then a response code of \`403\` will be returned. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "description": "string", - "name": "string", - "rules_used_in": [ - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - ], - "type": { - "type": "primitive", - "value": { - "type": "native_primitive", - "value": "INTEGER", - }, - }, - "value": { - "type": "primitive_value", - "value": { - "type": "integer", - "value": 0, - }, - }, - "variable_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -6601,28 +5977,7 @@ current organization_id, then a response code of \`403\` will be returned. "type": "json", "value": {}, }, - "responseBody": { - "description": "string", - "name": "string", - "rules_used_in": [ - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - ], - "type": { - "type": "primitive", - "value": { - "type": "native_primitive", - "value": "INTEGER", - }, - }, - "value": { - "type": "primitive_value", - "value": { - "type": "integer", - "value": 0, - }, - }, - "variable_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -7180,34 +6535,7 @@ current organization_id, then a response code of \`403\` will be returned. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "description": "string", - "name": "string", - "rules_used_in": [ - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - ], - "type": { - "type": "primitive", - "value": { - "type": "native_primitive", - "value": "INTEGER", - }, - }, - "value": { - "type": "primitive_value", - "value": { - "type": "integer", - "value": 0, - }, - }, - "variable_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -7359,95 +6687,7 @@ current organization_id, then a response code of \`403\` will be returned. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "authorized_signatory": { - "email": "string", - "fax": "string", - "first_name": "string", - "last_name": "string", - "phone": "string", - "title": "string", - }, - "contract_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "contract_status": "pending", - "contracting_provider": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "string", - "employment_status": "ACTIVE", - "employment_termination_date": "string", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "medicaid_provider_id": "string", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "ptan": "string", - "tax_id": "string", - "taxonomy_code": "string", - }, - "effective_date": "string", - "expiration_date": "string", - "payer": { - "payer_id": "string", - "payer_name": "string", - "payer_uuid": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - "regions": { - "states": [ - "AA", - ], - "type": "states", - }, - "rendering_providers": { - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "string", - "employment_status": "ACTIVE", - "employment_termination_date": "string", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "medicaid_provider_id": "string", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "ptan": "string", - "tax_id": "string", - "taxonomy_code": "string", - }, - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -7634,97 +6874,7 @@ current organization_id, then a response code of \`403\` will be returned. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": [ - { - "authorized_signatory": { - "email": "string", - "fax": "string", - "first_name": "string", - "last_name": "string", - "phone": "string", - "title": "string", - }, - "contract_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "contract_status": "pending", - "contracting_provider": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "string", - "employment_status": "ACTIVE", - "employment_termination_date": "string", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "medicaid_provider_id": "string", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "ptan": "string", - "tax_id": "string", - "taxonomy_code": "string", - }, - "effective_date": "string", - "expiration_date": "string", - "payer": { - "payer_id": "string", - "payer_name": "string", - "payer_uuid": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - "regions": { - "states": [ - "AA", - ], - "type": "states", - }, - "rendering_providers": { - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "string", - "employment_status": "ACTIVE", - "employment_termination_date": "string", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "medicaid_provider_id": "string", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "ptan": "string", - "tax_id": "string", - "taxonomy_code": "string", - }, - }, - }, - ], + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": [ @@ -7989,109 +7139,21 @@ current organization_id, then a response code of \`403\` will be returned. ], }, }, - "responseBody": { - "authorized_signatory": { - "email": "string", - "fax": "string", - "first_name": "string", - "last_name": "string", - "phone": "string", - "title": "string", - }, - "contract_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "contract_status": "pending", - "contracting_provider": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "string", - "employment_status": "ACTIVE", - "employment_termination_date": "string", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "medicaid_provider_id": "string", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "ptan": "string", - "tax_id": "string", - "taxonomy_code": "string", - }, - "effective_date": "string", - "expiration_date": "string", - "payer": { - "payer_id": "string", - "payer_name": "string", - "payer_uuid": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - "regions": { - "states": [ - "AA", - ], - "type": "states", - }, - "rendering_providers": { - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "string", - "employment_status": "ACTIVE", - "employment_termination_date": "string", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "medicaid_provider_id": "string", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "ptan": "string", - "tax_id": "string", - "taxonomy_code": "string", - }, - }, - }, - "responseBodyV3": { - "type": "json", - "value": { - "authorized_signatory": { - "email": "string", - "fax": "string", - "first_name": "string", - "last_name": "string", - "phone": "string", - "title": "string", - }, - "contract_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "contract_status": "pending", - "contracting_provider": { + "responseBody": undefined, + "responseBodyV3": { + "type": "json", + "value": { + "authorized_signatory": { + "email": "string", + "fax": "string", + "first_name": "string", + "last_name": "string", + "phone": "string", + "title": "string", + }, + "contract_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", + "contract_status": "pending", + "contracting_provider": { "addresses": [ { "address": { @@ -8370,95 +7432,7 @@ Max items is 100. "type": "json", "value": {}, }, - "responseBody": { - "authorized_signatory": { - "email": "string", - "fax": "string", - "first_name": "string", - "last_name": "string", - "phone": "string", - "title": "string", - }, - "contract_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "contract_status": "pending", - "contracting_provider": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "string", - "employment_status": "ACTIVE", - "employment_termination_date": "string", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "medicaid_provider_id": "string", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "ptan": "string", - "tax_id": "string", - "taxonomy_code": "string", - }, - "effective_date": "string", - "expiration_date": "string", - "payer": { - "payer_id": "string", - "payer_name": "string", - "payer_uuid": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - "regions": { - "states": [ - "AA", - ], - "type": "states", - }, - "rendering_providers": { - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "string", - "employment_status": "ACTIVE", - "employment_termination_date": "string", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "medicaid_provider_id": "string", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "ptan": "string", - "tax_id": "string", - "taxonomy_code": "string", - }, - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -8765,24 +7739,7 @@ value, overriding what was set before. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "groups": [ - { - "dashboards": [ - { - "dashboard_id": "string", - "description": "string", - "display_name": "string", - "icon": "bullseye-arrow", - "learn_more_link": "string", - }, - ], - "description": "string", - "learn_more_link": "string", - "type": "CLAIMS", - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -8903,15 +7860,7 @@ value, overriding what was set before. "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", }, }, - "responseBody": { - "code": "string", - "code_type": "ABF", - "created_at": "2023-01-01T00:00:00Z", - "diagnosis_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "name": "string", - "updated_at": "2023-01-01T00:00:00Z", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -9009,15 +7958,7 @@ value, overriding what was set before. "type": "json", "value": {}, }, - "responseBody": { - "code": "string", - "code_type": "ABF", - "created_at": "2023-01-01T00:00:00Z", - "diagnosis_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "name": "string", - "updated_at": "2023-01-01T00:00:00Z", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -9335,21 +8276,7 @@ Must obey the ICD-10 format if an ICD-10 code_type is provided, specifically: "type": "json", "value": {}, }, - "responseBody": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "first_name": "string", - "last_name": "string", - "npi": "string", - "organization_name": "string", - "taxonomy_code": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -9574,81 +8501,7 @@ Must obey the ICD-10 format if an ICD-10 code_type is provided, specifically: }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "billable_status": "BILLABLE", - "billing_provider_name": "string", - "billing_provider_npi": "string", - "billing_provider_tin": "string", - "carcs": [ - "string", - ], - "claim_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "claim_status": "biller_received", - "date_of_service": "2023-01-01", - "denial_reasons": [ - "Authorization Required", - ], - "diagnosis_codes": [ - "string", - ], - "encounter_external_id": "string", - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "end_date_of_service": "2023-01-01", - "owner_of_next_action": "CANDID", - "patient_first_name": "string", - "patient_last_name": "string", - "primary_insurance_paid_cents": 0, - "primary_payer_id": "string", - "primary_payer_name": "string", - "procedure_codes": [ - "string", - ], - "procedure_modifiers": [ - "22", - ], - "rarcs": [ - "string", - ], - "rejection_reason": "string", - "rendering_provider_name": "string", - "rendering_provider_npi": "string", - "rendering_provider_tin": "string", - "responsible_party": "INSURANCE_PAY", - "secondary_insurance_paid_cents": 0, - "service_facility": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "organization_name": "string", - "service_facility_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - "sum_allowed_amount_cents": 0, - "sum_charge_amount_cents": 0, - "sum_insurance_adjustment_amount_cents": 0, - "sum_insurance_balance_amount_cents": 0, - "sum_paid_amount_cents": 0, - "sum_patient_balance_amount_cents": 0, - "sum_patient_paid_amount_cents": 0, - "sum_patient_responsibility_cents": 0, - "sum_total_balance_amount_cents": 0, - "tag_ids": [ - "string", - ], - "tertiary_insurance_paid_cents": 0, - "work_queue_id": "string", - "work_queue_membership_activated_at": "2023-01-01T00:00:00Z", - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -10252,75 +9105,7 @@ or encounter external id. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "billable_status": "BILLABLE", - "billing_provider_name": "string", - "billing_provider_npi": "string", - "billing_provider_tin": "string", - "carcs": [ - "string", - ], - "claim_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "claim_status": "biller_received", - "date_of_service": "2023-01-01", - "denial_reasons": [ - "Authorization Required", - ], - "diagnosis_codes": [ - "string", - ], - "encounter_external_id": "string", - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "end_date_of_service": "2023-01-01", - "owner_of_next_action": "CANDID", - "patient_first_name": "string", - "patient_last_name": "string", - "primary_insurance_paid_cents": 0, - "primary_payer_id": "string", - "primary_payer_name": "string", - "procedure_codes": [ - "string", - ], - "procedure_modifiers": [ - "22", - ], - "rarcs": [ - "string", - ], - "rejection_reason": "string", - "rendering_provider_name": "string", - "rendering_provider_npi": "string", - "rendering_provider_tin": "string", - "responsible_party": "INSURANCE_PAY", - "secondary_insurance_paid_cents": 0, - "service_facility": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "organization_name": "string", - "service_facility_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - "sum_allowed_amount_cents": 0, - "sum_charge_amount_cents": 0, - "sum_insurance_adjustment_amount_cents": 0, - "sum_insurance_balance_amount_cents": 0, - "sum_paid_amount_cents": 0, - "sum_patient_balance_amount_cents": 0, - "sum_patient_paid_amount_cents": 0, - "sum_patient_responsibility_cents": 0, - "sum_total_balance_amount_cents": 0, - "tag_ids": [ - "string", - ], - "tertiary_insurance_paid_cents": 0, - "work_queue_id": "string", - "work_queue_membership_activated_at": "2023-01-01T00:00:00Z", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -10610,16 +9395,7 @@ or encounter external id. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "events": [ - { - "description": "string", - "occurred_at": "2023-01-01T00:00:00Z", - "secondary_text": "string", - "type": "encounter_received", - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -10916,9 +9692,7 @@ or encounter external id. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "remit_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -11132,27 +9906,7 @@ or encounter external id. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "financial_information_by_payer_responsibility_response": { - "claim_balance_cents": 0, - "primary_financial_information": { - "insurance_adjustment_cents": 0, - "insurance_balance_cents": 0, - "insurance_paid_cents": 0, - }, - "type": "only_primary", - }, - "total_allowed_amount_cents": 0, - "total_billed_amount_cents": 0, - "total_insurance_financial_information": { - "insurance_adjustment_cents": 0, - "insurance_balance_cents": 0, - "insurance_paid_cents": 0, - }, - "total_patient_balance_cents": 0, - "total_patient_paid_cents": 0, - "total_patient_responsibility_cents": 0, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -11332,427 +10086,7 @@ or encounter external id. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "appointment_type": "string", - "benefits_assigned_to_provider": true, - "billable_status": "BILLABLE", - "billing_notes": [ - { - "author_auth0_id": "string", - "author_name": "string", - "billing_note_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "created_at": "2023-01-01T00:00:00Z", - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "text": "string", - }, - ], - "billing_provider": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "first_name": "string", - "last_name": "string", - "npi": "string", - "organization_name": "string", - "provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "tax_id": "string", - "taxonomy_code": "string", - }, - "claims": [ - { - "claim_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "clearinghouse": "string", - "clearinghouse_claim_id": "string", - "eras": [ - { - "check_date": "string", - "check_number": "string", - "era_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - ], - "payer_claim_id": "string", - "service_lines": [ - { - "allowed_amount_cents": 0, - "charge_amount_cents": 0, - "claim_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "date_of_service_range": { - "end_date": "string", - "start_date": "string", - }, - "denial_reason": { - "reason": "Authorization Required", - }, - "diagnosis_id_one": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "diagnosis_id_three": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "diagnosis_id_two": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "diagnosis_id_zero": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_balance_cents": 0, - "modifiers": [ - "22", - ], - "paid_amount_cents": 0, - "patient_balance_cents": 0, - "patient_responsibility_cents": 0, - "place_of_service_code": "01", - "procedure_code": "string", - "quantity": "string", - "related_invoices": [ - { - "created_at": "2023-01-01T00:00:00Z", - "customer_invoice_url": "string", - "due_date": "string", - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "items": [ - { - "amount_cents": 0, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - ], - "note": "string", - "organzation_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "source_customer_id": "string", - "source_id": "string", - "status": "draft", - "updated_at": "2023-01-01T00:00:00Z", - "url": "string", - }, - ], - "service_line_era_data": { - "remittance_advice_remark_codes": [ - "string", - ], - "service_line_adjustments": [ - { - "adjustment_amount_cents": 0, - "adjustment_group_code": "string", - "adjustment_note": "string", - "adjustment_reason_code": "string", - "created_at": "2023-01-01T00:00:00Z", - }, - ], - }, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "service_line_manual_adjustments": [ - { - "adjustment_amount_cents": 0, - "adjustment_group_code": "string", - "adjustment_note": "string", - "adjustment_reason_code": "string", - "created_at": "2023-01-01T00:00:00Z", - }, - ], - "units": "MJ", - }, - ], - "status": "biller_received", - }, - ], - "clinical_notes": [ - { - "category": "clinical", - "notes": [ - "string", - ], - "notes_structured": [ - { - "author_name": "string", - "author_npi": "string", - "text": "string", - "timestamp": "2023-01-01T00:00:00Z", - }, - ], - }, - ], - "coding_attribution": "CANDID", - "date_of_service": "string", - "diagnoses": [ - { - "code": "string", - "code_type": "ABF", - "created_at": "2023-01-01T00:00:00Z", - "diagnosis_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "name": "string", - "updated_at": "2023-01-01T00:00:00Z", - }, - ], - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "end_date_of_service": "string", - "existing_medications": [ - { - "as_needed": true, - "dosage": "string", - "dosage_form": "string", - "frequency": "string", - "name": "string", - "rx_cui": "string", - }, - ], - "external_id": "string", - "guarantor": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "2023-01-01", - "email": "string", - "email_consent": true, - "external_id": "string", - "first_name": "string", - "guarantor_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "last_name": "string", - "phone_consent": true, - "phone_numbers": [ - { - "number": "string", - "type": "Home", - }, - ], - }, - "interventions": [ - { - "category": "allopathic", - "description": "string", - "labs": [ - { - "code": "string", - "code_type": "quest", - "name": "string", - }, - ], - "medication": { - "as_needed": true, - "dosage": "string", - "dosage_form": "string", - "frequency": "string", - "name": "string", - "rx_cui": "string", - }, - "name": "string", - }, - ], - "owner_of_next_action": "CANDID", - "patient": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "email": "string", - "email_consent": true, - "external_id": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "last_name": "string", - "phone_consent": true, - "phone_numbers": [ - { - "number": "string", - "type": "Home", - }, - ], - }, - "patient_authorized_release": true, - "patient_histories": [ - { - "category": "present_illness", - "questions": [ - { - "id": "string", - "responses": [ - { - "follow_ups": [ - { - "id": "string", - "response": "string", - "text": "string", - }, - ], - "response": "string", - }, - ], - "text": "string", - }, - ], - }, - ], - "patient_payments": [ - { - "amount_cents": 0, - "encounter_external_id": "string", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "patient_payment_id": "string", - "payment_name": "string", - "payment_note": "string", - "payment_timestamp": "2023-01-01T00:00:00Z", - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "MANUAL_ENTRY", - "source_internal_id": "string", - "status": "PENDING", - }, - ], - "pay_to_address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "place_of_service_code": "01", - "place_of_service_code_as_submitted": "01", - "prior_authorization_number": "string", - "provider_accepts_assignment": true, - "referring_provider": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "first_name": "string", - "last_name": "string", - "npi": "string", - "organization_name": "string", - "provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "tax_id": "string", - "taxonomy_code": "string", - }, - "rendering_provider": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "first_name": "string", - "last_name": "string", - "npi": "string", - "organization_name": "string", - "provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "tax_id": "string", - "taxonomy_code": "string", - }, - "responsible_party": "INSURANCE_PAY", - "service_facility": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "organization_name": "string", - "service_facility_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - "subscriber_primary": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_card": { - "group_number": "string", - "image_url_back": "string", - "image_url_front": "string", - "insurance_card_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_type": "01", - "member_id": "string", - "payer_id": "string", - "payer_name": "string", - "plan_name": "string", - "plan_type": "09", - "rx_bin": "string", - "rx_pcn": "string", - }, - "last_name": "string", - "patient_relationship_to_subscriber_code": "01", - }, - "subscriber_secondary": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_card": { - "group_number": "string", - "image_url_back": "string", - "image_url_front": "string", - "insurance_card_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_type": "01", - "member_id": "string", - "payer_id": "string", - "payer_name": "string", - "plan_name": "string", - "plan_type": "09", - "rx_bin": "string", - "rx_pcn": "string", - }, - "last_name": "string", - "patient_relationship_to_subscriber_code": "01", - }, - "synchronicity": "Synchronous", - "tags": [ - { - "color": "black", - "creator_id": "string", - "description": "string", - "tag_id": "string", - }, - ], - "url": "string", - "vitals": { - "blood_pressure_diastolic_mmhg": 0, - "blood_pressure_systolic_mmhg": 0, - "body_temperature_f": 1, - "height_in": 0, - "weight_lbs": 0, - }, - "work_queue_id": "string", - "work_queue_membership_activated_at": "2023-01-01T00:00:00Z", - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -12420,421 +10754,7 @@ or encounter external id. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "appointment_type": "string", - "benefits_assigned_to_provider": true, - "billable_status": "BILLABLE", - "billing_notes": [ - { - "author_auth0_id": "string", - "author_name": "string", - "billing_note_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "created_at": "2023-01-01T00:00:00Z", - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "text": "string", - }, - ], - "billing_provider": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "first_name": "string", - "last_name": "string", - "npi": "string", - "organization_name": "string", - "provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "tax_id": "string", - "taxonomy_code": "string", - }, - "claims": [ - { - "claim_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "clearinghouse": "string", - "clearinghouse_claim_id": "string", - "eras": [ - { - "check_date": "string", - "check_number": "string", - "era_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - ], - "payer_claim_id": "string", - "service_lines": [ - { - "allowed_amount_cents": 0, - "charge_amount_cents": 0, - "claim_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "date_of_service_range": { - "end_date": "string", - "start_date": "string", - }, - "denial_reason": { - "reason": "Authorization Required", - }, - "diagnosis_id_one": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "diagnosis_id_three": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "diagnosis_id_two": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "diagnosis_id_zero": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_balance_cents": 0, - "modifiers": [ - "22", - ], - "paid_amount_cents": 0, - "patient_balance_cents": 0, - "patient_responsibility_cents": 0, - "place_of_service_code": "01", - "procedure_code": "string", - "quantity": "string", - "related_invoices": [ - { - "created_at": "2023-01-01T00:00:00Z", - "customer_invoice_url": "string", - "due_date": "string", - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "items": [ - { - "amount_cents": 0, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - ], - "note": "string", - "organzation_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "source_customer_id": "string", - "source_id": "string", - "status": "draft", - "updated_at": "2023-01-01T00:00:00Z", - "url": "string", - }, - ], - "service_line_era_data": { - "remittance_advice_remark_codes": [ - "string", - ], - "service_line_adjustments": [ - { - "adjustment_amount_cents": 0, - "adjustment_group_code": "string", - "adjustment_note": "string", - "adjustment_reason_code": "string", - "created_at": "2023-01-01T00:00:00Z", - }, - ], - }, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "service_line_manual_adjustments": [ - { - "adjustment_amount_cents": 0, - "adjustment_group_code": "string", - "adjustment_note": "string", - "adjustment_reason_code": "string", - "created_at": "2023-01-01T00:00:00Z", - }, - ], - "units": "MJ", - }, - ], - "status": "biller_received", - }, - ], - "clinical_notes": [ - { - "category": "clinical", - "notes": [ - "string", - ], - "notes_structured": [ - { - "author_name": "string", - "author_npi": "string", - "text": "string", - "timestamp": "2023-01-01T00:00:00Z", - }, - ], - }, - ], - "coding_attribution": "CANDID", - "date_of_service": "string", - "diagnoses": [ - { - "code": "string", - "code_type": "ABF", - "created_at": "2023-01-01T00:00:00Z", - "diagnosis_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "name": "string", - "updated_at": "2023-01-01T00:00:00Z", - }, - ], - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "end_date_of_service": "string", - "existing_medications": [ - { - "as_needed": true, - "dosage": "string", - "dosage_form": "string", - "frequency": "string", - "name": "string", - "rx_cui": "string", - }, - ], - "external_id": "string", - "guarantor": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "2023-01-01", - "email": "string", - "email_consent": true, - "external_id": "string", - "first_name": "string", - "guarantor_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "last_name": "string", - "phone_consent": true, - "phone_numbers": [ - { - "number": "string", - "type": "Home", - }, - ], - }, - "interventions": [ - { - "category": "allopathic", - "description": "string", - "labs": [ - { - "code": "string", - "code_type": "quest", - "name": "string", - }, - ], - "medication": { - "as_needed": true, - "dosage": "string", - "dosage_form": "string", - "frequency": "string", - "name": "string", - "rx_cui": "string", - }, - "name": "string", - }, - ], - "owner_of_next_action": "CANDID", - "patient": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "email": "string", - "email_consent": true, - "external_id": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "last_name": "string", - "phone_consent": true, - "phone_numbers": [ - { - "number": "string", - "type": "Home", - }, - ], - }, - "patient_authorized_release": true, - "patient_histories": [ - { - "category": "present_illness", - "questions": [ - { - "id": "string", - "responses": [ - { - "follow_ups": [ - { - "id": "string", - "response": "string", - "text": "string", - }, - ], - "response": "string", - }, - ], - "text": "string", - }, - ], - }, - ], - "patient_payments": [ - { - "amount_cents": 0, - "encounter_external_id": "string", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "patient_payment_id": "string", - "payment_name": "string", - "payment_note": "string", - "payment_timestamp": "2023-01-01T00:00:00Z", - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "MANUAL_ENTRY", - "source_internal_id": "string", - "status": "PENDING", - }, - ], - "pay_to_address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "place_of_service_code": "01", - "place_of_service_code_as_submitted": "01", - "prior_authorization_number": "string", - "provider_accepts_assignment": true, - "referring_provider": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "first_name": "string", - "last_name": "string", - "npi": "string", - "organization_name": "string", - "provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "tax_id": "string", - "taxonomy_code": "string", - }, - "rendering_provider": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "first_name": "string", - "last_name": "string", - "npi": "string", - "organization_name": "string", - "provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "tax_id": "string", - "taxonomy_code": "string", - }, - "responsible_party": "INSURANCE_PAY", - "service_facility": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "organization_name": "string", - "service_facility_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - "subscriber_primary": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_card": { - "group_number": "string", - "image_url_back": "string", - "image_url_front": "string", - "insurance_card_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_type": "01", - "member_id": "string", - "payer_id": "string", - "payer_name": "string", - "plan_name": "string", - "plan_type": "09", - "rx_bin": "string", - "rx_pcn": "string", - }, - "last_name": "string", - "patient_relationship_to_subscriber_code": "01", - }, - "subscriber_secondary": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_card": { - "group_number": "string", - "image_url_back": "string", - "image_url_front": "string", - "insurance_card_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_type": "01", - "member_id": "string", - "payer_id": "string", - "payer_name": "string", - "plan_name": "string", - "plan_type": "09", - "rx_bin": "string", - "rx_pcn": "string", - }, - "last_name": "string", - "patient_relationship_to_subscriber_code": "01", - }, - "synchronicity": "Synchronous", - "tags": [ - { - "color": "black", - "creator_id": "string", - "description": "string", - "tag_id": "string", - }, - ], - "url": "string", - "vitals": { - "blood_pressure_diastolic_mmhg": 0, - "blood_pressure_systolic_mmhg": 0, - "body_temperature_f": 1, - "height_in": 0, - "weight_lbs": 0, - }, - "work_queue_id": "string", - "work_queue_membership_activated_at": "2023-01-01T00:00:00Z", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -13584,421 +11504,7 @@ or encounter external id. "responsible_party": "INSURANCE_PAY", }, }, - "responseBody": { - "appointment_type": "string", - "benefits_assigned_to_provider": true, - "billable_status": "BILLABLE", - "billing_notes": [ - { - "author_auth0_id": "string", - "author_name": "string", - "billing_note_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "created_at": "2023-01-01T00:00:00Z", - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "text": "string", - }, - ], - "billing_provider": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "first_name": "string", - "last_name": "string", - "npi": "string", - "organization_name": "string", - "provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "tax_id": "string", - "taxonomy_code": "string", - }, - "claims": [ - { - "claim_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "clearinghouse": "string", - "clearinghouse_claim_id": "string", - "eras": [ - { - "check_date": "string", - "check_number": "string", - "era_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - ], - "payer_claim_id": "string", - "service_lines": [ - { - "allowed_amount_cents": 0, - "charge_amount_cents": 0, - "claim_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "date_of_service_range": { - "end_date": "string", - "start_date": "string", - }, - "denial_reason": { - "reason": "Authorization Required", - }, - "diagnosis_id_one": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "diagnosis_id_three": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "diagnosis_id_two": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "diagnosis_id_zero": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_balance_cents": 0, - "modifiers": [ - "22", - ], - "paid_amount_cents": 0, - "patient_balance_cents": 0, - "patient_responsibility_cents": 0, - "place_of_service_code": "01", - "procedure_code": "string", - "quantity": "string", - "related_invoices": [ - { - "created_at": "2023-01-01T00:00:00Z", - "customer_invoice_url": "string", - "due_date": "string", - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "items": [ - { - "amount_cents": 0, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - ], - "note": "string", - "organzation_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "source_customer_id": "string", - "source_id": "string", - "status": "draft", - "updated_at": "2023-01-01T00:00:00Z", - "url": "string", - }, - ], - "service_line_era_data": { - "remittance_advice_remark_codes": [ - "string", - ], - "service_line_adjustments": [ - { - "adjustment_amount_cents": 0, - "adjustment_group_code": "string", - "adjustment_note": "string", - "adjustment_reason_code": "string", - "created_at": "2023-01-01T00:00:00Z", - }, - ], - }, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "service_line_manual_adjustments": [ - { - "adjustment_amount_cents": 0, - "adjustment_group_code": "string", - "adjustment_note": "string", - "adjustment_reason_code": "string", - "created_at": "2023-01-01T00:00:00Z", - }, - ], - "units": "MJ", - }, - ], - "status": "biller_received", - }, - ], - "clinical_notes": [ - { - "category": "clinical", - "notes": [ - "string", - ], - "notes_structured": [ - { - "author_name": "string", - "author_npi": "string", - "text": "string", - "timestamp": "2023-01-01T00:00:00Z", - }, - ], - }, - ], - "coding_attribution": "CANDID", - "date_of_service": "string", - "diagnoses": [ - { - "code": "string", - "code_type": "ABF", - "created_at": "2023-01-01T00:00:00Z", - "diagnosis_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "name": "string", - "updated_at": "2023-01-01T00:00:00Z", - }, - ], - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "end_date_of_service": "string", - "existing_medications": [ - { - "as_needed": true, - "dosage": "string", - "dosage_form": "string", - "frequency": "string", - "name": "string", - "rx_cui": "string", - }, - ], - "external_id": "string", - "guarantor": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "2023-01-01", - "email": "string", - "email_consent": true, - "external_id": "string", - "first_name": "string", - "guarantor_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "last_name": "string", - "phone_consent": true, - "phone_numbers": [ - { - "number": "string", - "type": "Home", - }, - ], - }, - "interventions": [ - { - "category": "allopathic", - "description": "string", - "labs": [ - { - "code": "string", - "code_type": "quest", - "name": "string", - }, - ], - "medication": { - "as_needed": true, - "dosage": "string", - "dosage_form": "string", - "frequency": "string", - "name": "string", - "rx_cui": "string", - }, - "name": "string", - }, - ], - "owner_of_next_action": "CANDID", - "patient": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "email": "string", - "email_consent": true, - "external_id": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "last_name": "string", - "phone_consent": true, - "phone_numbers": [ - { - "number": "string", - "type": "Home", - }, - ], - }, - "patient_authorized_release": true, - "patient_histories": [ - { - "category": "present_illness", - "questions": [ - { - "id": "string", - "responses": [ - { - "follow_ups": [ - { - "id": "string", - "response": "string", - "text": "string", - }, - ], - "response": "string", - }, - ], - "text": "string", - }, - ], - }, - ], - "patient_payments": [ - { - "amount_cents": 0, - "encounter_external_id": "string", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "patient_payment_id": "string", - "payment_name": "string", - "payment_note": "string", - "payment_timestamp": "2023-01-01T00:00:00Z", - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "MANUAL_ENTRY", - "source_internal_id": "string", - "status": "PENDING", - }, - ], - "pay_to_address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "place_of_service_code": "01", - "place_of_service_code_as_submitted": "01", - "prior_authorization_number": "string", - "provider_accepts_assignment": true, - "referring_provider": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "first_name": "string", - "last_name": "string", - "npi": "string", - "organization_name": "string", - "provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "tax_id": "string", - "taxonomy_code": "string", - }, - "rendering_provider": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "first_name": "string", - "last_name": "string", - "npi": "string", - "organization_name": "string", - "provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "tax_id": "string", - "taxonomy_code": "string", - }, - "responsible_party": "INSURANCE_PAY", - "service_facility": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "organization_name": "string", - "service_facility_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - "subscriber_primary": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_card": { - "group_number": "string", - "image_url_back": "string", - "image_url_front": "string", - "insurance_card_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_type": "01", - "member_id": "string", - "payer_id": "string", - "payer_name": "string", - "plan_name": "string", - "plan_type": "09", - "rx_bin": "string", - "rx_pcn": "string", - }, - "last_name": "string", - "patient_relationship_to_subscriber_code": "01", - }, - "subscriber_secondary": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_card": { - "group_number": "string", - "image_url_back": "string", - "image_url_front": "string", - "insurance_card_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_type": "01", - "member_id": "string", - "payer_id": "string", - "payer_name": "string", - "plan_name": "string", - "plan_type": "09", - "rx_bin": "string", - "rx_pcn": "string", - }, - "last_name": "string", - "patient_relationship_to_subscriber_code": "01", - }, - "synchronicity": "Synchronous", - "tags": [ - { - "color": "black", - "creator_id": "string", - "description": "string", - "tag_id": "string", - }, - ], - "url": "string", - "vitals": { - "blood_pressure_diastolic_mmhg": 0, - "blood_pressure_systolic_mmhg": 0, - "body_temperature_f": 1, - "height_in": 0, - "weight_lbs": 0, - }, - "work_queue_id": "string", - "work_queue_membership_activated_at": "2023-01-01T00:00:00Z", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -15206,421 +12712,7 @@ in bounds of the diagnoses list field "type": "json", "value": {}, }, - "responseBody": { - "appointment_type": "string", - "benefits_assigned_to_provider": true, - "billable_status": "BILLABLE", - "billing_notes": [ - { - "author_auth0_id": "string", - "author_name": "string", - "billing_note_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "created_at": "2023-01-01T00:00:00Z", - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "text": "string", - }, - ], - "billing_provider": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "first_name": "string", - "last_name": "string", - "npi": "string", - "organization_name": "string", - "provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "tax_id": "string", - "taxonomy_code": "string", - }, - "claims": [ - { - "claim_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "clearinghouse": "string", - "clearinghouse_claim_id": "string", - "eras": [ - { - "check_date": "string", - "check_number": "string", - "era_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - ], - "payer_claim_id": "string", - "service_lines": [ - { - "allowed_amount_cents": 0, - "charge_amount_cents": 0, - "claim_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "date_of_service_range": { - "end_date": "string", - "start_date": "string", - }, - "denial_reason": { - "reason": "Authorization Required", - }, - "diagnosis_id_one": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "diagnosis_id_three": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "diagnosis_id_two": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "diagnosis_id_zero": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_balance_cents": 0, - "modifiers": [ - "22", - ], - "paid_amount_cents": 0, - "patient_balance_cents": 0, - "patient_responsibility_cents": 0, - "place_of_service_code": "01", - "procedure_code": "string", - "quantity": "string", - "related_invoices": [ - { - "created_at": "2023-01-01T00:00:00Z", - "customer_invoice_url": "string", - "due_date": "string", - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "items": [ - { - "amount_cents": 0, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - ], - "note": "string", - "organzation_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "source_customer_id": "string", - "source_id": "string", - "status": "draft", - "updated_at": "2023-01-01T00:00:00Z", - "url": "string", - }, - ], - "service_line_era_data": { - "remittance_advice_remark_codes": [ - "string", - ], - "service_line_adjustments": [ - { - "adjustment_amount_cents": 0, - "adjustment_group_code": "string", - "adjustment_note": "string", - "adjustment_reason_code": "string", - "created_at": "2023-01-01T00:00:00Z", - }, - ], - }, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "service_line_manual_adjustments": [ - { - "adjustment_amount_cents": 0, - "adjustment_group_code": "string", - "adjustment_note": "string", - "adjustment_reason_code": "string", - "created_at": "2023-01-01T00:00:00Z", - }, - ], - "units": "MJ", - }, - ], - "status": "biller_received", - }, - ], - "clinical_notes": [ - { - "category": "clinical", - "notes": [ - "string", - ], - "notes_structured": [ - { - "author_name": "string", - "author_npi": "string", - "text": "string", - "timestamp": "2023-01-01T00:00:00Z", - }, - ], - }, - ], - "coding_attribution": "CANDID", - "date_of_service": "string", - "diagnoses": [ - { - "code": "string", - "code_type": "ABF", - "created_at": "2023-01-01T00:00:00Z", - "diagnosis_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "name": "string", - "updated_at": "2023-01-01T00:00:00Z", - }, - ], - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "end_date_of_service": "string", - "existing_medications": [ - { - "as_needed": true, - "dosage": "string", - "dosage_form": "string", - "frequency": "string", - "name": "string", - "rx_cui": "string", - }, - ], - "external_id": "string", - "guarantor": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "2023-01-01", - "email": "string", - "email_consent": true, - "external_id": "string", - "first_name": "string", - "guarantor_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "last_name": "string", - "phone_consent": true, - "phone_numbers": [ - { - "number": "string", - "type": "Home", - }, - ], - }, - "interventions": [ - { - "category": "allopathic", - "description": "string", - "labs": [ - { - "code": "string", - "code_type": "quest", - "name": "string", - }, - ], - "medication": { - "as_needed": true, - "dosage": "string", - "dosage_form": "string", - "frequency": "string", - "name": "string", - "rx_cui": "string", - }, - "name": "string", - }, - ], - "owner_of_next_action": "CANDID", - "patient": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "email": "string", - "email_consent": true, - "external_id": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "last_name": "string", - "phone_consent": true, - "phone_numbers": [ - { - "number": "string", - "type": "Home", - }, - ], - }, - "patient_authorized_release": true, - "patient_histories": [ - { - "category": "present_illness", - "questions": [ - { - "id": "string", - "responses": [ - { - "follow_ups": [ - { - "id": "string", - "response": "string", - "text": "string", - }, - ], - "response": "string", - }, - ], - "text": "string", - }, - ], - }, - ], - "patient_payments": [ - { - "amount_cents": 0, - "encounter_external_id": "string", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "patient_payment_id": "string", - "payment_name": "string", - "payment_note": "string", - "payment_timestamp": "2023-01-01T00:00:00Z", - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "MANUAL_ENTRY", - "source_internal_id": "string", - "status": "PENDING", - }, - ], - "pay_to_address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "place_of_service_code": "01", - "place_of_service_code_as_submitted": "01", - "prior_authorization_number": "string", - "provider_accepts_assignment": true, - "referring_provider": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "first_name": "string", - "last_name": "string", - "npi": "string", - "organization_name": "string", - "provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "tax_id": "string", - "taxonomy_code": "string", - }, - "rendering_provider": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "first_name": "string", - "last_name": "string", - "npi": "string", - "organization_name": "string", - "provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "tax_id": "string", - "taxonomy_code": "string", - }, - "responsible_party": "INSURANCE_PAY", - "service_facility": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "organization_name": "string", - "service_facility_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - "subscriber_primary": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_card": { - "group_number": "string", - "image_url_back": "string", - "image_url_front": "string", - "insurance_card_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_type": "01", - "member_id": "string", - "payer_id": "string", - "payer_name": "string", - "plan_name": "string", - "plan_type": "09", - "rx_bin": "string", - "rx_pcn": "string", - }, - "last_name": "string", - "patient_relationship_to_subscriber_code": "01", - }, - "subscriber_secondary": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_card": { - "group_number": "string", - "image_url_back": "string", - "image_url_front": "string", - "insurance_card_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_type": "01", - "member_id": "string", - "payer_id": "string", - "payer_name": "string", - "plan_name": "string", - "plan_type": "09", - "rx_bin": "string", - "rx_pcn": "string", - }, - "last_name": "string", - "patient_relationship_to_subscriber_code": "01", - }, - "synchronicity": "Synchronous", - "tags": [ - { - "color": "black", - "creator_id": "string", - "description": "string", - "tag_id": "string", - }, - ], - "url": "string", - "vitals": { - "blood_pressure_diastolic_mmhg": 0, - "blood_pressure_systolic_mmhg": 0, - "body_temperature_f": 1, - "height_in": 0, - "weight_lbs": 0, - }, - "work_queue_id": "string", - "work_queue_membership_activated_at": "2023-01-01T00:00:00Z", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -16466,16 +13558,7 @@ submitted to the payor. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": [ - { - "attachment_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "attachment_type": "DOCUMENTATION", - "authed_url": "string", - "content_type": "string", - "description": "string", - "file_name": "string", - }, - ], + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": [ @@ -16582,11 +13665,7 @@ submitted to the payor. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "download_link": "string", - "result": "success", - "ttl_seconds": 1, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -16683,102 +13762,7 @@ submitted to the payor. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "contracting_status_result": { - "contracting_status": "out_of_network", - "out_of_network_reason": "no_effective_contract", - }, - "credentialing_status_result": { - "credentialing_spans": [ - { - "contracting_provider": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "string", - "employment_status": "ACTIVE", - "employment_termination_date": "string", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "medicaid_provider_id": "string", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "ptan": "string", - "tax_id": "string", - "taxonomy_code": "string", - }, - "credentialing_status": "work_in_progress", - "dates": { - "end_date": "string", - "start_date": "string", - "type": "required_dates", - }, - "payer": { - "payer_id": "string", - "payer_name": "string", - "payer_uuid": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - "payer_loaded_date": "string", - "provider_credentialing_span_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "regions": { - "states": [ - "AA", - ], - "type": "states", - }, - "rendering_provider": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "string", - "employment_status": "ACTIVE", - "employment_termination_date": "string", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "medicaid_provider_id": "string", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "ptan": "string", - "tax_id": "string", - "taxonomy_code": "string", - }, - "submitted_date": "string", - }, - ], - "type": "credentialed", - }, - "network_status": "in_network", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -16968,11 +13952,7 @@ submitted to the payor. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "closed_task_ids": [ - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -17131,44 +14111,7 @@ submitted to the payor. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "assignee": { - "auth0_id": "string", - "type": "individual_assignee", - }, - "enrollment_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "enrollment_type": "CLAIMS", - "last_updated_at": "2023-01-01T00:00:00Z", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "payer_id": "string", - "payer_name": "string", - "priority": "HIGH_PRIORITY", - "provider_npi": "string", - "source": { - "cpid": "string", - "date_completed": "string", - "date_mailed": "string", - "date_received": "string", - "doc_handle": "string", - "doc_type": "Claim Status", - "follow_up_date": "string", - "idm_username": "string", - "notes": "string", - "npi_number": "string", - "payer_id": "string", - "payer_name": "string", - "provider": "string", - "provider_num": "string", - "provider_status": "string", - "reference_id": "string", - "sap_id": "string", - "status": "AUTHORIZED", - "submitter_id": "string", - "tax_id": "string", - "type": "change_healthcare", - }, - "status": "SUBMITTED", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -17307,50 +14250,7 @@ submitted to the payor. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "assignee": { - "auth0_id": "string", - "type": "individual_assignee", - }, - "enrollment_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "enrollment_type": "CLAIMS", - "last_updated_at": "2023-01-01T00:00:00Z", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "payer_id": "string", - "payer_name": "string", - "priority": "HIGH_PRIORITY", - "provider_npi": "string", - "source": { - "cpid": "string", - "date_completed": "string", - "date_mailed": "string", - "date_received": "string", - "doc_handle": "string", - "doc_type": "Claim Status", - "follow_up_date": "string", - "idm_username": "string", - "notes": "string", - "npi_number": "string", - "payer_id": "string", - "payer_name": "string", - "provider": "string", - "provider_num": "string", - "provider_status": "string", - "reference_id": "string", - "sap_id": "string", - "status": "AUTHORIZED", - "submitter_id": "string", - "tax_id": "string", - "type": "change_healthcare", - }, - "status": "SUBMITTED", - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -17662,44 +14562,7 @@ submitted to the payor. "type": "json", "value": {}, }, - "responseBody": { - "assignee": { - "auth0_id": "string", - "type": "individual_assignee", - }, - "enrollment_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "enrollment_type": "CLAIMS", - "last_updated_at": "2023-01-01T00:00:00Z", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "payer_id": "string", - "payer_name": "string", - "priority": "HIGH_PRIORITY", - "provider_npi": "string", - "source": { - "cpid": "string", - "date_completed": "string", - "date_mailed": "string", - "date_received": "string", - "doc_handle": "string", - "doc_type": "Claim Status", - "follow_up_date": "string", - "idm_username": "string", - "notes": "string", - "npi_number": "string", - "payer_id": "string", - "payer_name": "string", - "provider": "string", - "provider_num": "string", - "provider_status": "string", - "reference_id": "string", - "sap_id": "string", - "status": "AUTHORIZED", - "submitter_id": "string", - "tax_id": "string", - "type": "change_healthcare", - }, - "status": "SUBMITTED", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -17926,44 +14789,7 @@ submitted to the payor. "provider_npi": "string", }, }, - "responseBody": { - "assignee": { - "auth0_id": "string", - "type": "individual_assignee", - }, - "enrollment_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "enrollment_type": "CLAIMS", - "last_updated_at": "2023-01-01T00:00:00Z", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "payer_id": "string", - "payer_name": "string", - "priority": "HIGH_PRIORITY", - "provider_npi": "string", - "source": { - "cpid": "string", - "date_completed": "string", - "date_mailed": "string", - "date_received": "string", - "doc_handle": "string", - "doc_type": "Claim Status", - "follow_up_date": "string", - "idm_username": "string", - "notes": "string", - "npi_number": "string", - "payer_id": "string", - "payer_name": "string", - "provider": "string", - "provider_num": "string", - "provider_status": "string", - "reference_id": "string", - "sap_id": "string", - "status": "AUTHORIZED", - "submitter_id": "string", - "tax_id": "string", - "type": "change_healthcare", - }, - "status": "SUBMITTED", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -18149,9 +14975,7 @@ submitted to the payor. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "import_datetime": "2023-01-01T00:00:00Z", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -18231,9 +15055,7 @@ submitted to the payor. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "signed_download_url": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -18343,14 +15165,7 @@ submitted to the payor. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": [ - { - "attachment_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "enrollment_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "file_name": "string", - "storage_uri": "string", - }, - ], + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": [ @@ -18453,7 +15268,7 @@ submitted to the payor. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", @@ -18822,15 +15637,7 @@ submitted to the payor. "subscriber_payer_name": "string", }, }, - "responseBody": { - "contract_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "expected_network_status": "in_network", - "explanation": "string", - "routed_billing_provider_npi": "string", - "routed_billing_provider_tin": "string", - "routed_payer_id": "string", - "routed_payer_name": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -19142,11 +15949,7 @@ submitted to the payor. "subscriber_payer_name": "string", }, }, - "responseBody": { - "contract_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "expected_network_status": "in_network", - "explanation": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -19564,12 +16367,7 @@ submitted to the payor. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "authenticated_download_url": "string", - "authenticated_download_url_expiration": "2023-01-01T00:00:00Z", - "created_at": "2023-01-01T00:00:00Z", - "name": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -19913,28 +16711,7 @@ Must be within 30 days of start_date. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "allowed_amount_cents": 0, - "fee_schedule_entry_config_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "modifier": { - "type": "modifier", - "value": "string", - }, - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "payer": { - "payer_id": "string", - "payer_name": "string", - "payer_uuid": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - "payer_plan": "string", - "procedure_code": "string", - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -20195,9 +16972,7 @@ Must be within 30 days of start_date. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "mechanism": "legacy", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -20324,43 +17099,7 @@ doesn't data wrangle the modeling into the presentation shape. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "page": { - "items": [ - { - "billing_npi": "string", - "bound_fee_schedules": [ - { - "bound_fee_schedule_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "effective_date_range": { - "end_date": "string", - "start_date": "string", - }, - "fee_schedule_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "geography_coverage": { - "type": "all", - }, - "license_type_coverage": { - "type": "all", - }, - "network_coverage": { - "type": "all", - }, - "place_of_service_coverage": { - "type": "all", - }, - "reference_fee_schedule": { - "percentage": 0, - "reference_name": "string", - }, - }, - ], - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -20574,40 +17313,7 @@ doesn't data wrangle the modeling into the presentation shape. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "bound_fee_schedule": { - "bound_fee_schedule_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "effective_date_range": { - "end_date": "string", - "start_date": "string", - }, - "fee_schedule_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "geography_coverage": { - "type": "all", - }, - "license_type_coverage": { - "type": "all", - }, - "network_coverage": { - "type": "all", - }, - "place_of_service_coverage": { - "type": "all", - }, - "reference_fee_schedule": { - "percentage": 0, - "reference_name": "string", - }, - }, - "entries": [ - { - "contracted_rate_cents": 0, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "modifier": "string", - "procedure_code": "string", - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -20846,30 +17552,7 @@ doesn't data wrangle the modeling into the presentation shape. "last_name": "string", }, }, - "responseBody": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "2023-01-01", - "email": "string", - "email_consent": true, - "external_id": "string", - "first_name": "string", - "guarantor_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "last_name": "string", - "phone_consent": true, - "phone_numbers": [ - { - "number": "string", - "type": "Home", - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -21033,30 +17716,7 @@ doesn't data wrangle the modeling into the presentation shape. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "2023-01-01", - "email": "string", - "email_consent": true, - "external_id": "string", - "first_name": "string", - "guarantor_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "last_name": "string", - "phone_consent": true, - "phone_numbers": [ - { - "number": "string", - "type": "Home", - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -21175,30 +17835,7 @@ doesn't data wrangle the modeling into the presentation shape. "type": "json", "value": {}, }, - "responseBody": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "2023-01-01", - "email": "string", - "email_consent": true, - "external_id": "string", - "first_name": "string", - "guarantor_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "last_name": "string", - "phone_consent": true, - "phone_numbers": [ - { - "number": "string", - "type": "Home", - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -21477,23 +18114,7 @@ doesn't data wrangle the modeling into the presentation shape. "type": "json", "value": {}, }, - "responseBody": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "external_id": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "last_name": "string", - "patient_relationship_to_subscriber_code": "01", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -21837,14 +18458,7 @@ doesn't data wrangle the modeling into the presentation shape. }, }, }, - "responseBody": { - "service_lines": { - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32": { - "insurance_adjustment_cents": 0, - "other_patient_responsibility_cents": 0, - }, - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -22082,9 +18696,7 @@ doesn't data wrangle the modeling into the presentation shape. }, }, }, - "responseBody": { - "adjustment_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -22294,7 +18906,7 @@ doesn't data wrangle the modeling into the presentation shape. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", @@ -22484,20 +19096,7 @@ doesn't data wrangle the modeling into the presentation shape. "type": "json", "value": {}, }, - "responseBody": { - "group_number": "string", - "image_url_back": "string", - "image_url_front": "string", - "insurance_card_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_type": "01", - "member_id": "string", - "payer_id": "string", - "payer_name": "string", - "plan_name": "string", - "plan_type": "09", - "rx_bin": "string", - "rx_pcn": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -22650,10 +19249,7 @@ doesn't data wrangle the modeling into the presentation shape. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "signed_image_url_back": "string", - "signed_image_url_front": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -22833,13 +19429,7 @@ doesn't data wrangle the modeling into the presentation shape. "year_of_release": 0, }, }, - "responseBody": { - "director": { - "name": "string", - }, - "name": "string", - "year_of_release": 0, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -23010,13 +19600,7 @@ doesn't data wrangle the modeling into the presentation shape. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "director": { - "name": "string", - }, - "name": "string", - "year_of_release": 0, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -23249,26 +19833,7 @@ identified by the id, then 403 response will be returned "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "created_at": "2023-01-01T00:00:00Z", - "customer_invoice_url": "string", - "due_date": "string", - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "items": [ - { - "amount_cents": 0, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - ], - "note": "string", - "organzation_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "source_customer_id": "string", - "source_id": "string", - "status": "draft", - "updated_at": "2023-01-01T00:00:00Z", - "url": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -23454,32 +20019,7 @@ will be limited to only those invoices that belong to the patient_external_id }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "created_at": "2023-01-01T00:00:00Z", - "customer_invoice_url": "string", - "due_date": "string", - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "items": [ - { - "amount_cents": 0, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - ], - "note": "string", - "organzation_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "source_customer_id": "string", - "source_id": "string", - "status": "draft", - "updated_at": "2023-01-01T00:00:00Z", - "url": "string", - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -23742,29 +20282,7 @@ upon creation of the invoice. "patient_external_id": "string", }, }, - "responseBody": [ - { - "created_at": "2023-01-01T00:00:00Z", - "customer_invoice_url": "string", - "due_date": "string", - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "items": [ - { - "amount_cents": 0, - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - ], - "note": "string", - "organzation_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "source_customer_id": "string", - "source_id": "string", - "status": "draft", - "type": "invoice", - "updated_at": "2023-01-01T00:00:00Z", - "url": "string", - }, - ], + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": [ @@ -24063,21 +20581,7 @@ upon creation of the invoice. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "additional_details": { - "auth_base_url": "string", - "base_url": "string", - "candid_practitioner_id": "string", - "canvas_export_organization_name": "string", - "customer_task_owner": "string", - "type": "canvas", - }, - "billing_start_date": "2023-01-01", - "create_tasks_for_non_billable_encounters": true, - "enabled": true, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "process_updates_for_existing_encounters": true, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -24257,27 +20761,7 @@ upon creation of the invoice. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "additional_details": { - "auth_base_url": "string", - "base_url": "string", - "candid_practitioner_id": "string", - "canvas_export_organization_name": "string", - "customer_task_owner": "string", - "type": "canvas", - }, - "billing_start_date": "2023-01-01", - "create_tasks_for_non_billable_encounters": true, - "enabled": true, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "process_updates_for_existing_encounters": true, - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -24494,21 +20978,7 @@ upon creation of the invoice. "process_updates_for_existing_encounters": true, }, }, - "responseBody": { - "additional_details": { - "auth_base_url": "string", - "base_url": "string", - "candid_practitioner_id": "string", - "canvas_export_organization_name": "string", - "customer_task_owner": "string", - "type": "canvas", - }, - "billing_start_date": "2023-01-01", - "create_tasks_for_non_billable_encounters": true, - "enabled": true, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "process_updates_for_existing_encounters": true, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -24695,21 +21165,7 @@ upon creation of the invoice. "type": "json", "value": {}, }, - "responseBody": { - "additional_details": { - "auth_base_url": "string", - "base_url": "string", - "candid_practitioner_id": "string", - "canvas_export_organization_name": "string", - "customer_task_owner": "string", - "type": "canvas", - }, - "billing_start_date": "2023-01-01", - "create_tasks_for_non_billable_encounters": true, - "enabled": true, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "process_updates_for_existing_encounters": true, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -25047,19 +21503,7 @@ upon creation of the invoice. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "search_result": { - "payer": { - "payer_id": "string", - "payer_name": "string", - "payer_uuid": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - "summary": { - "fee_schedule_count": 0, - }, - "type": "match", - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -25158,24 +21602,7 @@ upon creation of the invoice. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "page": { - "items": [ - { - "payer": { - "payer_id": "string", - "payer_name": "string", - "payer_uuid": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - "summary": { - "fee_schedule_count": 0, - }, - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -25307,16 +21734,7 @@ upon creation of the invoice. "payer_uuid": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", }, }, - "responseBody": { - "payer": { - "payer_id": "string", - "payer_name": "string", - "payer_uuid": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - "summary": { - "fee_schedule_count": 0, - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -25453,37 +21871,7 @@ upon creation of the invoice. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "string", - "employment_status": "ACTIVE", - "employment_termination_date": "string", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "medicaid_provider_id": "string", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "ptan": "string", - "tax_id": "string", - "taxonomy_code": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -25612,43 +22000,7 @@ upon creation of the invoice. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "string", - "employment_status": "ACTIVE", - "employment_termination_date": "string", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "medicaid_provider_id": "string", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "ptan": "string", - "tax_id": "string", - "taxonomy_code": "string", - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -25856,37 +22208,7 @@ upon creation of the invoice. "provider_type": "INDIVIDUAL", }, }, - "responseBody": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "string", - "employment_status": "ACTIVE", - "employment_termination_date": "string", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "medicaid_provider_id": "string", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "ptan": "string", - "tax_id": "string", - "taxonomy_code": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -26018,37 +22340,7 @@ upon creation of the invoice. "type": "json", "value": {}, }, - "responseBody": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "string", - "employment_status": "ACTIVE", - "employment_termination_date": "string", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "medicaid_provider_id": "string", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "ptan": "string", - "tax_id": "string", - "taxonomy_code": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -26456,49 +22748,7 @@ upon creation of the invoice. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "2023-01-01", - "employment_termination_date": "2023-01-01", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "qualifications": [ - { - "identifier_code": "MCR", - "identifier_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "identifier_value": { - "provider_number": "string", - "state": "AA", - "type": "medicare_provider_identifier", - }, - "period": { - "end_date": "string", - "start_date": "string", - }, - }, - ], - "tax_id": "string", - "taxonomy_code": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -26639,55 +22889,7 @@ upon creation of the invoice. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "2023-01-01", - "employment_termination_date": "2023-01-01", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "qualifications": [ - { - "identifier_code": "MCR", - "identifier_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "identifier_value": { - "provider_number": "string", - "state": "AA", - "type": "medicare_provider_identifier", - }, - "period": { - "end_date": "string", - "start_date": "string", - }, - }, - ], - "tax_id": "string", - "taxonomy_code": "string", - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -26957,49 +23159,7 @@ upon creation of the invoice. ], }, }, - "responseBody": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "2023-01-01", - "employment_termination_date": "2023-01-01", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "qualifications": [ - { - "identifier_code": "MCR", - "identifier_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "identifier_value": { - "provider_number": "string", - "state": "AA", - "type": "medicare_provider_identifier", - }, - "period": { - "end_date": "string", - "start_date": "string", - }, - }, - ], - "tax_id": "string", - "taxonomy_code": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -27220,49 +23380,7 @@ upon creation of the invoice. "type": "json", "value": {}, }, - "responseBody": { - "addresses": [ - { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "address_type": "DEFAULT", - }, - ], - "employment_start_date": "2023-01-01", - "employment_termination_date": "2023-01-01", - "first_name": "string", - "is_billing": true, - "is_rendering": true, - "last_name": "string", - "license_type": "MD", - "npi": "string", - "organization_name": "string", - "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "provider_type": "INDIVIDUAL", - "qualifications": [ - { - "identifier_code": "MCR", - "identifier_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "identifier_value": { - "provider_number": "string", - "state": "AA", - "type": "medicare_provider_identifier", - }, - "period": { - "end_date": "string", - "start_date": "string", - }, - }, - ], - "tax_id": "string", - "taxonomy_code": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -27503,18 +23621,7 @@ upon creation of the invoice. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "description": "string", - "tag_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "tag_name": "string", - "tag_type": "system", - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -27740,12 +23847,7 @@ upon creation of the invoice. "tag_type": "system", }, }, - "responseBody": { - "description": "string", - "tag_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "tag_name": "string", - "tag_type": "system", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -28338,15 +24440,7 @@ identified by the id, then 403 response will be returned "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "auto_collect": true, - "auto_collect_threshold_cents": 0, - "auto_invoice": true, - "days_until_due": 0, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -28514,21 +24608,7 @@ identified by the id, then 403 response will be returned }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "auto_collect": true, - "auto_collect_threshold_cents": 0, - "auto_invoice": true, - "days_until_due": 0, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -28721,15 +24801,7 @@ identified by the id, then 403 response will be returned "patient_external_id": "string", }, }, - "responseBody": { - "auto_collect": true, - "auto_collect_threshold_cents": 0, - "auto_invoice": true, - "days_until_due": 0, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -28946,15 +25018,7 @@ If the authenticated user does not have the permission to update the PatientPaym "type": "json", "value": {}, }, - "responseBody": { - "auto_collect": true, - "auto_collect_threshold_cents": 0, - "auto_invoice": true, - "days_until_due": 0, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -29448,26 +25512,7 @@ by the id, then 403 will be returned }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "amount_cents": 0, - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "patient_payment_id": "string", - "payment_name": "string", - "payment_note": "string", - "payment_timestamp": "2023-01-01T00:00:00Z", - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "MANUAL_ENTRY", - "source_internal_id": "string", - "status": "PENDING", - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -29755,20 +25800,7 @@ by the id, then 403 will be returned "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "amount_cents": 0, - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "patient_payment_id": "string", - "payment_name": "string", - "payment_note": "string", - "payment_timestamp": "2023-01-01T00:00:00Z", - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "MANUAL_ENTRY", - "source_internal_id": "string", - "status": "PENDING", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -29940,20 +25972,7 @@ by the id, then 403 will be returned "amount_cents": 0, }, }, - "responseBody": { - "amount_cents": 0, - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "patient_payment_id": "string", - "payment_name": "string", - "payment_note": "string", - "payment_timestamp": "2023-01-01T00:00:00Z", - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "MANUAL_ENTRY", - "source_internal_id": "string", - "status": "PENDING", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -30257,20 +26276,7 @@ by the id, then 403 will be returned "type": "json", "value": {}, }, - "responseBody": { - "amount_cents": 0, - "encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "patient_payment_id": "string", - "payment_name": "string", - "payment_note": "string", - "payment_timestamp": "2023-01-01T00:00:00Z", - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "MANUAL_ENTRY", - "source_internal_id": "string", - "status": "PENDING", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -30909,26 +26915,7 @@ the current organization_id of the authenticated user. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "amount_cents": 0, - "encounter_external_id": "string", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "patient_payment_id": "string", - "payment_name": "string", - "payment_note": "string", - "payment_timestamp": "2023-01-01T00:00:00Z", - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "MANUAL_ENTRY", - "source_internal_id": "string", - "status": "PENDING", - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -31240,20 +27227,7 @@ authenticated user, then response code of 403 will be returned. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "amount_cents": 0, - "encounter_external_id": "string", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "patient_payment_id": "string", - "payment_name": "string", - "payment_note": "string", - "payment_timestamp": "2023-01-01T00:00:00Z", - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "MANUAL_ENTRY", - "source_internal_id": "string", - "status": "PENDING", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -31510,20 +27484,7 @@ The order of specificity from the most specific to least specific is \`service_l "amount_cents": 0, }, }, - "responseBody": { - "amount_cents": 0, - "encounter_external_id": "string", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "patient_payment_id": "string", - "payment_name": "string", - "payment_note": "string", - "payment_timestamp": "2023-01-01T00:00:00Z", - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "MANUAL_ENTRY", - "source_internal_id": "string", - "status": "PENDING", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -31901,20 +27862,7 @@ The order of specificity from the most specific to least specific is \`service_l "type": "json", "value": {}, }, - "responseBody": { - "amount_cents": 0, - "encounter_external_id": "string", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient_external_id": "string", - "patient_payment_id": "string", - "payment_name": "string", - "payment_note": "string", - "payment_timestamp": "2023-01-01T00:00:00Z", - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "source": "MANUAL_ENTRY", - "source_internal_id": "string", - "status": "PENDING", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -32540,29 +28488,7 @@ current organization_id, then a response code of \`403\` will be returned. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "date_of_birth": "string", - "days_since_last_invoice": 0, - "encounter_count": 0, - "first_name": "string", - "has_secondary_insurance": true, - "insurance_payment_total_cents": 0, - "last_name": "string", - "manual_adjustments_total_cents": 0, - "most_recent_date_of_service": "string", - "most_recent_encounter_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "patient": "string", - "patient_balance_excluding_open_invoice_total_cents": 0, - "patient_balance_total_cents": 0, - "patient_payment_total_cents": 0, - "pending_invoice_count": 0, - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -32810,107 +28736,7 @@ current organization_id, then a response code of \`403\` will be returned. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "insurance_payment_total_cents": 0, - "manual_adjustments_total_cents": 0, - "ordered_adjustment_ids": [ - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - ], - "ordered_encounter_ids": [ - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - ], - "ordered_patient_payment_ids": [ - "string", - ], - "patient": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "email": "string", - "email_consent": true, - "external_id": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "last_name": "string", - "phone_consent": true, - "phone_numbers": [ - { - "number": "string", - "type": "Home", - }, - ], - }, - "patient_balance_excluding_open_invoice_total_cents": 0, - "patient_balance_total_cents": 0, - "patient_payment_total_cents": 0, - "subscriber_primary": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_card": { - "group_number": "string", - "image_url_back": "string", - "image_url_front": "string", - "insurance_card_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_type": "01", - "member_id": "string", - "payer_id": "string", - "payer_name": "string", - "plan_name": "string", - "plan_type": "09", - "rx_bin": "string", - "rx_pcn": "string", - }, - "last_name": "string", - "patient_relationship_to_subscriber_code": "01", - }, - "subscriber_secondary": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "date_of_birth": "string", - "first_name": "string", - "gender": "male", - "individual_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_card": { - "group_number": "string", - "image_url_back": "string", - "image_url_front": "string", - "insurance_card_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "insurance_type": "01", - "member_id": "string", - "payer_id": "string", - "payer_name": "string", - "plan_name": "string", - "plan_type": "09", - "rx_bin": "string", - "rx_pcn": "string", - }, - "last_name": "string", - "patient_relationship_to_subscriber_code": "01", - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -33209,11 +29035,7 @@ slashes. "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "payer_id": "string", - "payer_name": "string", - "payer_uuid": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -33314,17 +29136,7 @@ slashes. }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "payer_id": "string", - "payer_name": "string", - "payer_uuid": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -33561,18 +29373,7 @@ identified by the id, then 403 response will be returned "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "account_name": "string", - "billing_provider_npis": [ - "string", - ], - "description": "string", - "enabled": true, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "site": "string", - "type": "chargebee", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -33737,20 +29538,7 @@ identified by the id, then 403 response will be returned "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": [ - { - "account_name": "string", - "billing_provider_npis": [ - "string", - ], - "description": "string", - "enabled": true, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "site": "string", - "type": "chargebee", - }, - ], + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": [ @@ -33971,18 +29759,7 @@ If there already exists a PaymentAccountConfig for the organization with the sam "type": "chargebee", }, }, - "responseBody": { - "account_name": "string", - "billing_provider_npis": [ - "string", - ], - "description": "string", - "enabled": true, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "site": "string", - "type": "chargebee", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -34364,18 +30141,7 @@ If there already exists a PaymentAccountConfig for the organization with the sam "type": "chargebee", }, }, - "responseBody": { - "account_name": "string", - "billing_provider_npis": [ - "string", - ], - "description": "string", - "enabled": true, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "site": "string", - "type": "chargebee", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -34910,16 +30676,7 @@ and the third party payment processor's customer can be identified by the patien "patient_external_id": "string", }, }, - "responseBody": { - "items": [ - { - "claim_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "customer_url": "string", - "patient_external_id": "string", - "result": "Success", - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -35055,7 +30812,7 @@ Verification includes that the provided token has all of the appropriate permiss "type": "json", "value": "string", }, - "responseBody": true, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": true, @@ -35149,10 +30906,7 @@ customer page will be returned (this generally is a page listing the existing cu }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "customer_url": "string", - "result": "Success", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -35338,38 +31092,7 @@ customer page will be returned (this generally is a page listing the existing cu "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "pipelines": [ - { - "description": "string", - "id": "string", - "name": "string", - "phases": [ - { - "description": "string", - "id": "string", - "name": "string", - "steps": [ - { - "description": "string", - "id": "string", - "name": "string", - "rules": [ - { - "description": "string", - "id": "string", - "name": "string", - "type": "ordinary_rule", - }, - ], - "supports_configurable_rules": true, - }, - ], - }, - ], - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -35597,43 +31320,7 @@ customer page will be returned (this generally is a page listing the existing cu }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": [ - { - "adjudication_date": "string", - "check_amount_cents": 0, - "check_date": "2023-01-01", - "check_image_download_url": { - "expiration_time_seconds": 0, - "url": "string", - }, - "check_number": "string", - "claim_status_code": "processed_as_primary", - "content_edi": { - "claim_section": { - "begin_line_number": 0, - "end_line_number": 0, - }, - "content": { - "type": "content_string", - "value": "string", - }, - "service_line_sections": { - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32": { - "begin_line_number": 0, - "end_line_number": 0, - }, - }, - }, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "included_claims_count": 0, - "payer_identifier": "string", - "payer_name": "string", - "posted_datetime": "2023-01-01T00:00:00Z", - "source": { - "type": "clearinghouse", - }, - }, - ], + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": [ @@ -35853,49 +31540,7 @@ customer page will be returned (this generally is a page listing the existing cu }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "page": { - "items": [ - { - "adjudication_date": "string", - "check_amount_cents": 0, - "check_date": "2023-01-01", - "check_image_download_url": { - "expiration_time_seconds": 0, - "url": "string", - }, - "check_number": "string", - "claim_status_code": "processed_as_primary", - "content_edi": { - "claim_section": { - "begin_line_number": 0, - "end_line_number": 0, - }, - "content": { - "type": "content_string", - "value": "string", - }, - "service_line_sections": { - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32": { - "begin_line_number": 0, - "end_line_number": 0, - }, - }, - }, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "included_claims_count": 0, - "payer_identifier": "string", - "payer_name": "string", - "posted_datetime": "2023-01-01T00:00:00Z", - "source": { - "type": "clearinghouse", - }, - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -36223,43 +31868,7 @@ customer page will be returned (this generally is a page listing the existing cu "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "remit": { - "adjudication_date": "string", - "check_amount_cents": 0, - "check_date": "2023-01-01", - "check_image_download_url": { - "expiration_time_seconds": 0, - "url": "string", - }, - "check_number": "string", - "claim_status_code": "processed_as_primary", - "content_edi": { - "claim_section": { - "begin_line_number": 0, - "end_line_number": 0, - }, - "content": { - "type": "content_string", - "value": "string", - }, - "service_line_sections": { - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32": { - "begin_line_number": 0, - "end_line_number": 0, - }, - }, - }, - "id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "included_claims_count": 0, - "payer_identifier": "string", - "payer_name": "string", - "posted_datetime": "2023-01-01T00:00:00Z", - "source": { - "type": "clearinghouse", - }, - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -36605,12 +32214,7 @@ customer page will be returned (this generally is a page listing the existing cu }, }, }, - "responseBody": { - "result": { - "reason": "string", - "type": "failure", - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -36804,11 +32408,7 @@ customer page will be returned (this generally is a page listing the existing cu "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "response": { - "type": "success", - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -36976,18 +32576,7 @@ customer page will be returned (this generally is a page listing the existing cu "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "check_date": "string", - "paid_amount_cents": 0, - "patient_responsibility_cents": 0, - "service_adjustments": [ - { - "adjustment_amount_cents": 0, - "adjustment_group_code": "CO", - "adjustment_reason_code": "string", - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -37149,18 +32738,7 @@ customer page will be returned (this generally is a page listing the existing cu "type": "json", "value": {}, }, - "responseBody": { - "address": { - "address1": "string", - "address2": "string", - "city": "string", - "state": "AA", - "zip_code": "string", - "zip_plus_four_code": "string", - }, - "organization_name": "string", - "service_facility_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -37408,25 +32986,7 @@ customer page will be returned (this generally is a page listing the existing cu "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "service_line_tables": { - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32": { - "rows": [ - { - "description": "string", - "details": { - "billed_amount_cents": 0, - "claim_submission_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "type": "charge_row", - }, - "event_date": "2023-01-01T00:00:00Z", - "event_locator": "string", - }, - ], - "service_line_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - }, - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -37687,30 +33247,7 @@ customer page will be returned (this generally is a page listing the existing cu "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "allowed_amount_cents": 0, - "billed_amount_cents": 0, - "financial_information_by_payer_responsibility_response": { - "primary": { - "insurance_adjustment_cents": 0, - "insurance_balance_cents": 0, - "insurance_paid_cents": 0, - }, - "secondary": { - "insurance_adjustment_cents": 0, - "insurance_balance_cents": 0, - "insurance_paid_cents": 0, - }, - }, - "insurance_financial_information": { - "insurance_adjustment_cents": 0, - "insurance_balance_cents": 0, - "insurance_paid_cents": 0, - }, - "patient_balance_cents": 0, - "patient_paid_cents": 0, - "patient_responsibility_cents": 0, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -37885,14 +33422,7 @@ customer page will be returned (this generally is a page listing the existing cu "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": [ - { - "color": "black", - "creator_id": "string", - "description": "string", - "tag_id": "string", - }, - ], + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": [ @@ -37984,12 +33514,7 @@ customer page will be returned (this generally is a page listing the existing cu "tag_id": "string", }, }, - "responseBody": { - "color": "black", - "creator_id": "string", - "description": "string", - "tag_id": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -38135,16 +33660,7 @@ customer page will be returned (this generally is a page listing the existing cu "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "actions": [ - { - "display_name": "string", - "execution_method": { - "type": "close_task", - }, - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -38317,20 +33833,7 @@ customer page will be returned (this generally is a page listing the existing cu "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "assignees": [ - { - "auth0_id": "string", - "first_name": "string", - "last_name": "string", - }, - ], - "default_assignee": { - "auth0_id": "string", - "first_name": "string", - "last_name": "string", - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -38461,29 +33964,7 @@ customer page will be returned (this generally is a page listing the existing cu }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "accessible_organization_ids": [ - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - ], - "idp_metadata": [ - { - "auth0_id": "string", - "type": "auth_zero_metadata", - }, - ], - "primary_organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "user_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "user_metadata": { - "name": "string", - "type": "machine_user_metadata", - }, - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -38678,29 +34159,7 @@ customer page will be returned (this generally is a page listing the existing cu }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "items": [ - { - "accessible_organization_ids": [ - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - ], - "idp_metadata": [ - { - "auth0_id": "string", - "type": "auth_zero_metadata", - }, - ], - "primary_organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "user_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "user_metadata": { - "name": "string", - "type": "machine_user_metadata", - }, - }, - ], - "next_page_token": "string", - "prev_page_token": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -38852,25 +34311,7 @@ customer page will be returned (this generally is a page listing the existing cu "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": [ - { - "accessible_organization_ids": [ - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - ], - "idp_metadata": [ - { - "auth0_id": "string", - "type": "auth_zero_metadata", - }, - ], - "primary_organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "user_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "user_metadata": { - "name": "string", - "type": "machine_user_metadata", - }, - }, - ], + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": [ @@ -39008,23 +34449,7 @@ customer page will be returned (this generally is a page listing the existing cu "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "accessible_organization_ids": [ - "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - ], - "idp_metadata": [ - { - "auth0_id": "string", - "type": "auth_zero_metadata", - }, - ], - "primary_organization_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "user_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "user_metadata": { - "name": "string", - "type": "machine_user_metadata", - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -39249,23 +34674,7 @@ customer page will be returned (this generally is a page listing the existing cu "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "work_queue": { - "category": { - "description": "string", - "display_name": "string", - "type": "PRE_SUBMISSION", - }, - "created_at": "2023-01-01T00:00:00Z", - "created_by": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "description": "string", - "display_name": "string", - "work_queue_id": "string", - }, - "work_queue_statistics": { - "num_claims": 0, - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -39403,27 +34812,7 @@ customer page will be returned (this generally is a page listing the existing cu "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "work_queues": [ - { - "work_queue": { - "category": { - "description": "string", - "display_name": "string", - "type": "PRE_SUBMISSION", - }, - "created_at": "2023-01-01T00:00:00Z", - "created_by": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", - "description": "string", - "display_name": "string", - "work_queue_id": "string", - }, - "work_queue_statistics": { - "num_claims": 0, - }, - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -77130,14 +72519,7 @@ exports[`transformApiDefinitionToDb > {"name":"cyclical-1"} 1`] = ` "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "creditor": { - "name": "string", - }, - "debtor": { - "name": "string", - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -78684,40 +74066,7 @@ exports[`transformApiDefinitionToDb > {"name":"vellum"} 1`] = ` ], }, }, - "responseBody": { - "results": [ - { - "data": { - "completions": [ - { - "external_id": "string", - "finish_reason": "LENGTH", - "id": "string", - "logprobs": { - "likelihood": 1, - "tokens": [ - { - "logprob": 1, - "text_offset": 0, - "token": "string", - "top_logprobs": { - "string": 1, - }, - }, - ], - }, - "model_version_id": "string", - "text": "string", - "type": "STRING", - }, - ], - }, - "error": { - "message": "string", - }, - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -79417,25 +74766,7 @@ exports[`transformApiDefinitionToDb > {"name":"vellum"} 1`] = ` "query": "string", }, }, - "responseBody": { - "results": [ - { - "document": { - "external_id": "string", - "id": "string", - "label": "string", - "metadata": { - "string": {}, - }, - }, - "keywords": [ - "string", - ], - "score": 1, - "text": "string", - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -80200,26 +75531,7 @@ exports[`transformApiDefinitionToDb > {"name":"vellum"} 1`] = ` "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "active_model_version_ids": [ - "string", - ], - "created": "2023-01-01T00:00:00Z", - "environment": "DEVELOPMENT", - "id": "string", - "input_variables": [ - { - "id": "string", - "key": "string", - "type": "STRING", - }, - ], - "label": "string", - "last_deployed_on": "2023-01-01T00:00:00Z", - "model_type": "GENERATE", - "name": "string", - "status": "ACTIVE", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -80352,17 +75664,7 @@ exports[`transformApiDefinitionToDb > {"name":"vellum"} 1`] = ` "name": "string", }, }, - "responseBody": { - "created": "2023-01-01T00:00:00Z", - "environment": "DEVELOPMENT", - "id": "string", - "indexing_config": { - "string": {}, - }, - "label": "string", - "name": "string", - "status": "ACTIVE", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -80550,35 +75852,7 @@ exports[`transformApiDefinitionToDb > {"name":"vellum"} 1`] = ` }, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "count": 0, - "next": "string", - "previous": "string", - "results": [ - { - "document_to_document_indexes": [ - { - "document_index_id": "string", - "id": "string", - "indexing_state": "AWAITING_PROCESSING", - }, - ], - "external_id": "string", - "id": "string", - "keywords": [ - "string", - ], - "label": "string", - "last_uploaded_at": "2023-01-01T00:00:00Z", - "metadata": { - "string": {}, - }, - "processing_failure_reason": "EXCEEDED_CHARACTER_LIMIT", - "processing_state": "QUEUED", - "status": "ACTIVE", - }, - ], - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -80735,26 +76009,7 @@ exports[`transformApiDefinitionToDb > {"name":"vellum"} 1`] = ` "type": "json", "value": {}, }, - "responseBody": { - "document_to_document_indexes": [ - { - "document_index_id": "string", - "id": "string", - "indexing_state": "AWAITING_PROCESSING", - }, - ], - "external_id": "string", - "id": "string", - "label": "string", - "last_uploaded_at": "2023-01-01T00:00:00Z", - "metadata": { - "string": {}, - }, - "original_file_url": "string", - "processed_file_url": "string", - "processing_state": "QUEUED", - "status": "ACTIVE", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -81053,9 +76308,7 @@ exports[`transformApiDefinitionToDb > {"name":"vellum"} 1`] = ` "type": "form", "value": {}, }, - "responseBody": { - "document_id": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -81232,71 +76485,7 @@ exports[`transformApiDefinitionToDb > {"name":"vellum"} 1`] = ` "queryParameters": {}, "requestBody": undefined, "requestBodyV3": undefined, - "responseBody": { - "build_config": { - "base_model": "string", - "sandbox_snapshot": { - "id": "string", - "prompt_id": "string", - "prompt_index": 0, - "sandbox_id": "string", - }, - }, - "created": "2023-01-01T00:00:00Z", - "exec_config": { - "input_variables": [ - { - "id": "string", - "key": "string", - "type": "STRING", - }, - ], - "parameters": { - "frequency_penalty": 1, - "logit_bias": { - "string": 1, - }, - "max_tokens": 0, - "presence_penalty": 1, - "stop": [ - "string", - ], - "temperature": 1, - "top_k": 1, - "top_p": 1, - }, - "prompt_block_data": { - "blocks": [ - { - "block_type": "CHAT_MESSAGE", - "id": "string", - "properties": { - "blocks": [], - "chat_message_unterminated": true, - "chat_role": "SYSTEM", - "function_description": "string", - "function_forced": true, - "function_name": "string", - "function_parameters": { - "string": {}, - }, - "template": "string", - "template_type": "STRING", - }, - }, - ], - "version": 0, - }, - "prompt_syntax_version": 0, - "prompt_template": "string", - }, - "external_id": "string", - "id": "string", - "label": "string", - "model_type": "GENERATE", - "provider": "ANTHROPIC", - "status": "CREATING", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -81459,12 +76648,7 @@ exports[`transformApiDefinitionToDb > {"name":"vellum"} 1`] = ` }, }, }, - "responseBody": { - "prompt": { - "num_tokens": 0, - "text": "string", - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -81654,28 +76838,7 @@ Under the hood, this endpoint creates a new sandbox, a new model version, and a "provider": "ANTHROPIC", }, }, - "responseBody": { - "deployment": { - "id": "string", - "label": "string", - "name": "string", - }, - "model_version": { - "id": "string", - "label": "string", - }, - "prompt": { - "id": "string", - "label": "string", - }, - "sandbox": { - "id": "string", - "label": "string", - }, - "sandbox_snapshot": { - "id": "string", - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -81948,28 +77111,7 @@ or overwritten with default values.", ], }, }, - "responseBody": { - "id": "string", - "inputs": [ - { - "chat_history": [ - { - "role": "SYSTEM", - "text": "string", - }, - ], - "key": "string", - "type": "TEXT", - "value": "string", - }, - ], - "label": "string", - "metric_input_params": { - "params": { - "target": "string", - }, - }, - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": { @@ -82266,16 +77408,7 @@ or overwritten with default values.", }, }, }, - "responseBody": { - "evaluation_params": { - "target": "string", - }, - "input_values": { - "string": {}, - }, - "label": "string", - "test_case_id": "string", - }, + "responseBody": undefined, "responseBodyV3": { "type": "json", "value": {