candidhealth 0.39.11 → 0.40.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/candidhealth/charge_capture/v_1/client.rb +4 -0
- data/lib/candidhealth/charge_capture/v_1/types/charge_capture_data.rb +16 -2
- data/lib/candidhealth/encounters/v_4/client.rb +35 -8
- data/lib/candidhealth/encounters/v_4/types/claim_supplemental_information.rb +86 -0
- data/lib/candidhealth/encounters/v_4/types/encounter.rb +15 -1
- data/lib/candidhealth/encounters/v_4/types/encounter_optional.rb +16 -2
- data/lib/candidhealth/encounters/v_4/types/report_transmission_code.rb +14 -0
- data/lib/candidhealth/encounters/v_4/types/report_type_code.rb +73 -0
- data/lib/candidhealth/non_insurance_payers/v_1/client.rb +4 -2
- data/lib/candidhealth/non_insurance_payers/v_1/types/create_non_insurance_payer_request.rb +15 -2
- data/lib/candidhealth/pre_encounter/appointments/v_1/client.rb +8 -4
- data/lib/candidhealth/pre_encounter/common/types/human_name.rb +15 -2
- data/lib/candidhealth/pre_encounter/coverages/v_1/client.rb +8 -4
- data/lib/candidhealth/pre_encounter/images/client.rb +32 -0
- data/lib/candidhealth/pre_encounter/images/v_1/client.rb +359 -0
- data/lib/candidhealth/pre_encounter/images/v_1/types/coverage_association.rb +74 -0
- data/lib/candidhealth/pre_encounter/images/v_1/types/coverage_image_side.rb +16 -0
- data/lib/candidhealth/pre_encounter/images/v_1/types/image.rb +188 -0
- data/lib/candidhealth/pre_encounter/images/v_1/types/image_status.rb +17 -0
- data/lib/candidhealth/pre_encounter/images/v_1/types/mutable_image.rb +125 -0
- data/lib/candidhealth/pre_encounter/images/v_1/types/patient_association.rb +75 -0
- data/lib/candidhealth/pre_encounter/patients/v_1/client.rb +89 -6
- data/lib/candidhealth/pre_encounter/patients/v_1/types/authorization.rb +11 -1
- data/lib/candidhealth/service_lines/v_2/types/service_line.rb +6 -4
- data/lib/candidhealth/service_lines/v_2/types/service_line_create.rb +6 -4
- data/lib/candidhealth/service_lines/v_2/types/service_line_create_standalone.rb +6 -4
- data/lib/candidhealth/service_lines/v_2/types/service_line_update.rb +10 -8
- data/lib/candidhealth/service_lines/v_2/types/test_result_type.rb +1 -0
- data/lib/candidhealth/write_offs/v_1/types/non_insurance_payer_write_off.rb +143 -0
- data/lib/candidhealth/write_offs/v_1/types/non_insurance_payer_write_off_create.rb +113 -0
- data/lib/candidhealth/write_offs/v_1/types/write_off.rb +13 -0
- data/lib/candidhealth/write_offs/v_1/types/write_off_create.rb +13 -0
- data/lib/candidhealth/x_12/v_1/types/rarc.rb +114 -0
- data/lib/requests.rb +2 -2
- data/lib/types_export.rb +11 -0
- metadata +15 -2
@@ -0,0 +1,125 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "image_status"
|
4
|
+
require_relative "coverage_association"
|
5
|
+
require_relative "patient_association"
|
6
|
+
require "ostruct"
|
7
|
+
require "json"
|
8
|
+
|
9
|
+
module CandidApiClient
|
10
|
+
module PreEncounter
|
11
|
+
module Images
|
12
|
+
module V1
|
13
|
+
module Types
|
14
|
+
# An object representing an Image.
|
15
|
+
class MutableImage
|
16
|
+
# @return [String]
|
17
|
+
attr_reader :file_name
|
18
|
+
# @return [String]
|
19
|
+
attr_reader :display_name
|
20
|
+
# @return [String]
|
21
|
+
attr_reader :file_type
|
22
|
+
# @return [CandidApiClient::PreEncounter::Images::V1::Types::ImageStatus]
|
23
|
+
attr_reader :status
|
24
|
+
# @return [CandidApiClient::PreEncounter::Images::V1::Types::CoverageAssociation]
|
25
|
+
attr_reader :coverage
|
26
|
+
# @return [CandidApiClient::PreEncounter::Images::V1::Types::PatientAssociation]
|
27
|
+
attr_reader :patient
|
28
|
+
# @return [OpenStruct] Additional properties unmapped to the current class definition
|
29
|
+
attr_reader :additional_properties
|
30
|
+
# @return [Object]
|
31
|
+
attr_reader :_field_set
|
32
|
+
protected :_field_set
|
33
|
+
|
34
|
+
OMIT = Object.new
|
35
|
+
|
36
|
+
# @param file_name [String]
|
37
|
+
# @param display_name [String]
|
38
|
+
# @param file_type [String]
|
39
|
+
# @param status [CandidApiClient::PreEncounter::Images::V1::Types::ImageStatus]
|
40
|
+
# @param coverage [CandidApiClient::PreEncounter::Images::V1::Types::CoverageAssociation]
|
41
|
+
# @param patient [CandidApiClient::PreEncounter::Images::V1::Types::PatientAssociation]
|
42
|
+
# @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
|
43
|
+
# @return [CandidApiClient::PreEncounter::Images::V1::Types::MutableImage]
|
44
|
+
def initialize(file_name:, display_name:, file_type:, status:, coverage: OMIT, patient: OMIT,
|
45
|
+
additional_properties: nil)
|
46
|
+
@file_name = file_name
|
47
|
+
@display_name = display_name
|
48
|
+
@file_type = file_type
|
49
|
+
@status = status
|
50
|
+
@coverage = coverage if coverage != OMIT
|
51
|
+
@patient = patient if patient != OMIT
|
52
|
+
@additional_properties = additional_properties
|
53
|
+
@_field_set = {
|
54
|
+
"file_name": file_name,
|
55
|
+
"display_name": display_name,
|
56
|
+
"file_type": file_type,
|
57
|
+
"status": status,
|
58
|
+
"coverage": coverage,
|
59
|
+
"patient": patient
|
60
|
+
}.reject do |_k, v|
|
61
|
+
v == OMIT
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
# Deserialize a JSON object to an instance of MutableImage
|
66
|
+
#
|
67
|
+
# @param json_object [String]
|
68
|
+
# @return [CandidApiClient::PreEncounter::Images::V1::Types::MutableImage]
|
69
|
+
def self.from_json(json_object:)
|
70
|
+
struct = JSON.parse(json_object, object_class: OpenStruct)
|
71
|
+
parsed_json = JSON.parse(json_object)
|
72
|
+
file_name = struct["file_name"]
|
73
|
+
display_name = struct["display_name"]
|
74
|
+
file_type = struct["file_type"]
|
75
|
+
status = struct["status"]
|
76
|
+
if parsed_json["coverage"].nil?
|
77
|
+
coverage = nil
|
78
|
+
else
|
79
|
+
coverage = parsed_json["coverage"].to_json
|
80
|
+
coverage = CandidApiClient::PreEncounter::Images::V1::Types::CoverageAssociation.from_json(json_object: coverage)
|
81
|
+
end
|
82
|
+
if parsed_json["patient"].nil?
|
83
|
+
patient = nil
|
84
|
+
else
|
85
|
+
patient = parsed_json["patient"].to_json
|
86
|
+
patient = CandidApiClient::PreEncounter::Images::V1::Types::PatientAssociation.from_json(json_object: patient)
|
87
|
+
end
|
88
|
+
new(
|
89
|
+
file_name: file_name,
|
90
|
+
display_name: display_name,
|
91
|
+
file_type: file_type,
|
92
|
+
status: status,
|
93
|
+
coverage: coverage,
|
94
|
+
patient: patient,
|
95
|
+
additional_properties: struct
|
96
|
+
)
|
97
|
+
end
|
98
|
+
|
99
|
+
# Serialize an instance of MutableImage to a JSON object
|
100
|
+
#
|
101
|
+
# @return [String]
|
102
|
+
def to_json(*_args)
|
103
|
+
@_field_set&.to_json
|
104
|
+
end
|
105
|
+
|
106
|
+
# Leveraged for Union-type generation, validate_raw attempts to parse the given
|
107
|
+
# hash and check each fields type against the current object's property
|
108
|
+
# definitions.
|
109
|
+
#
|
110
|
+
# @param obj [Object]
|
111
|
+
# @return [Void]
|
112
|
+
def self.validate_raw(obj:)
|
113
|
+
obj.file_name.is_a?(String) != false || raise("Passed value for field obj.file_name is not the expected type, validation failed.")
|
114
|
+
obj.display_name.is_a?(String) != false || raise("Passed value for field obj.display_name is not the expected type, validation failed.")
|
115
|
+
obj.file_type.is_a?(String) != false || raise("Passed value for field obj.file_type is not the expected type, validation failed.")
|
116
|
+
obj.status.is_a?(CandidApiClient::PreEncounter::Images::V1::Types::ImageStatus) != false || raise("Passed value for field obj.status is not the expected type, validation failed.")
|
117
|
+
obj.coverage.nil? || CandidApiClient::PreEncounter::Images::V1::Types::CoverageAssociation.validate_raw(obj: obj.coverage)
|
118
|
+
obj.patient.nil? || CandidApiClient::PreEncounter::Images::V1::Types::PatientAssociation.validate_raw(obj: obj.patient)
|
119
|
+
end
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
@@ -0,0 +1,75 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "ostruct"
|
4
|
+
require "json"
|
5
|
+
|
6
|
+
module CandidApiClient
|
7
|
+
module PreEncounter
|
8
|
+
module Images
|
9
|
+
module V1
|
10
|
+
module Types
|
11
|
+
# An association to a Patient.
|
12
|
+
class PatientAssociation
|
13
|
+
# @return [String]
|
14
|
+
attr_reader :id
|
15
|
+
# @return [String]
|
16
|
+
attr_reader :notes
|
17
|
+
# @return [OpenStruct] Additional properties unmapped to the current class definition
|
18
|
+
attr_reader :additional_properties
|
19
|
+
# @return [Object]
|
20
|
+
attr_reader :_field_set
|
21
|
+
protected :_field_set
|
22
|
+
|
23
|
+
OMIT = Object.new
|
24
|
+
|
25
|
+
# @param id [String]
|
26
|
+
# @param notes [String]
|
27
|
+
# @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
|
28
|
+
# @return [CandidApiClient::PreEncounter::Images::V1::Types::PatientAssociation]
|
29
|
+
def initialize(id:, notes: OMIT, additional_properties: nil)
|
30
|
+
@id = id
|
31
|
+
@notes = notes if notes != OMIT
|
32
|
+
@additional_properties = additional_properties
|
33
|
+
@_field_set = { "id": id, "notes": notes }.reject do |_k, v|
|
34
|
+
v == OMIT
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
# Deserialize a JSON object to an instance of PatientAssociation
|
39
|
+
#
|
40
|
+
# @param json_object [String]
|
41
|
+
# @return [CandidApiClient::PreEncounter::Images::V1::Types::PatientAssociation]
|
42
|
+
def self.from_json(json_object:)
|
43
|
+
struct = JSON.parse(json_object, object_class: OpenStruct)
|
44
|
+
id = struct["id"]
|
45
|
+
notes = struct["notes"]
|
46
|
+
new(
|
47
|
+
id: id,
|
48
|
+
notes: notes,
|
49
|
+
additional_properties: struct
|
50
|
+
)
|
51
|
+
end
|
52
|
+
|
53
|
+
# Serialize an instance of PatientAssociation to a JSON object
|
54
|
+
#
|
55
|
+
# @return [String]
|
56
|
+
def to_json(*_args)
|
57
|
+
@_field_set&.to_json
|
58
|
+
end
|
59
|
+
|
60
|
+
# Leveraged for Union-type generation, validate_raw attempts to parse the given
|
61
|
+
# hash and check each fields type against the current object's property
|
62
|
+
# definitions.
|
63
|
+
#
|
64
|
+
# @param obj [Object]
|
65
|
+
# @return [Void]
|
66
|
+
def self.validate_raw(obj:)
|
67
|
+
obj.id.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.")
|
68
|
+
obj.notes&.is_a?(String) != false || raise("Passed value for field obj.notes is not the expected type, validation failed.")
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
@@ -6,6 +6,7 @@ require_relative "types/patient"
|
|
6
6
|
require_relative "types/mutable_patient_with_mrn"
|
7
7
|
require_relative "../../common/types/sort_direction"
|
8
8
|
require_relative "types/patient_page"
|
9
|
+
require_relative "../../common/types/external_provider"
|
9
10
|
require "json"
|
10
11
|
require "date"
|
11
12
|
require "async"
|
@@ -36,6 +37,7 @@ module CandidApiClient
|
|
36
37
|
# * :period (Hash)
|
37
38
|
# * :start (Date)
|
38
39
|
# * :end_ (Date)
|
40
|
+
# * :suffix (String)
|
39
41
|
# * :other_names (Array<CandidApiClient::PreEncounter::Common::Types::HumanName>)
|
40
42
|
# * :other_identifiers (Array<CandidApiClient::PreEncounter::Common::Types::ExternalIdentifier>)
|
41
43
|
# * :gender (CandidApiClient::PreEncounter::Common::Types::Gender)
|
@@ -88,6 +90,7 @@ module CandidApiClient
|
|
88
90
|
# * :period (Hash)
|
89
91
|
# * :start (Date)
|
90
92
|
# * :end_ (Date)
|
93
|
+
# * :suffix (String)
|
91
94
|
# * :telecom (Hash)
|
92
95
|
# * :value (String)
|
93
96
|
# * :use (CandidApiClient::PreEncounter::Common::Types::ContactPointUse)
|
@@ -117,7 +120,7 @@ module CandidApiClient
|
|
117
120
|
# @return [CandidApiClient::PreEncounter::Patients::V1::Types::Patient]
|
118
121
|
# @example
|
119
122
|
# api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
|
120
|
-
# api.pre_encounter.patients.v_1.create(skip_duplicate_check: true, request: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { } }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { } }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { } }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
|
123
|
+
# api.pre_encounter.patients.v_1.create(skip_duplicate_check: true, request: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
|
121
124
|
def create(request:, skip_duplicate_check: nil, request_options: nil)
|
122
125
|
response = @request_client.conn.post do |req|
|
123
126
|
req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
|
@@ -153,6 +156,7 @@ module CandidApiClient
|
|
153
156
|
# * :period (Hash)
|
154
157
|
# * :start (Date)
|
155
158
|
# * :end_ (Date)
|
159
|
+
# * :suffix (String)
|
156
160
|
# * :other_names (Array<CandidApiClient::PreEncounter::Common::Types::HumanName>)
|
157
161
|
# * :other_identifiers (Array<CandidApiClient::PreEncounter::Common::Types::ExternalIdentifier>)
|
158
162
|
# * :gender (CandidApiClient::PreEncounter::Common::Types::Gender)
|
@@ -205,6 +209,7 @@ module CandidApiClient
|
|
205
209
|
# * :period (Hash)
|
206
210
|
# * :start (Date)
|
207
211
|
# * :end_ (Date)
|
212
|
+
# * :suffix (String)
|
208
213
|
# * :telecom (Hash)
|
209
214
|
# * :value (String)
|
210
215
|
# * :use (CandidApiClient::PreEncounter::Common::Types::ContactPointUse)
|
@@ -234,7 +239,7 @@ module CandidApiClient
|
|
234
239
|
# @return [CandidApiClient::PreEncounter::Patients::V1::Types::Patient]
|
235
240
|
# @example
|
236
241
|
# api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
|
237
|
-
# api.pre_encounter.patients.v_1.create_with_mrn(skip_duplicate_check: true, request: { mrn: "string", name: { family: "string", given: ["string"], use: USUAL, period: { } }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { } }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { } }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { } }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
|
242
|
+
# api.pre_encounter.patients.v_1.create_with_mrn(skip_duplicate_check: true, request: { mrn: "string", name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
|
238
243
|
def create_with_mrn(request:, skip_duplicate_check: nil, request_options: nil)
|
239
244
|
response = @request_client.conn.post do |req|
|
240
245
|
req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
|
@@ -297,6 +302,40 @@ module CandidApiClient
|
|
297
302
|
CandidApiClient::PreEncounter::Patients::V1::Types::PatientPage.from_json(json_object: response.body)
|
298
303
|
end
|
299
304
|
|
305
|
+
# Searches for referring providers that match the query parameters. The search is
|
306
|
+
# case-insensitive, supports fuzzy matching, and matches against provider name and
|
307
|
+
# NPI. The search criteria must be an alphanumeric string, and the search is
|
308
|
+
# limited to the first 20 results.
|
309
|
+
#
|
310
|
+
# @param search_criteria [String]
|
311
|
+
# @param request_options [CandidApiClient::RequestOptions]
|
312
|
+
# @return [Array<CandidApiClient::PreEncounter::Common::Types::ExternalProvider>]
|
313
|
+
# @example
|
314
|
+
# api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
|
315
|
+
# api.pre_encounter.patients.v_1.search_providers(search_criteria: "string")
|
316
|
+
def search_providers(search_criteria:, request_options: nil)
|
317
|
+
response = @request_client.conn.get do |req|
|
318
|
+
req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
|
319
|
+
req.headers["Authorization"] = request_options.token unless request_options&.token.nil?
|
320
|
+
req.headers = {
|
321
|
+
**(req.headers || {}),
|
322
|
+
**@request_client.get_headers,
|
323
|
+
**(request_options&.additional_headers || {})
|
324
|
+
}.compact
|
325
|
+
req.params = {
|
326
|
+
**(request_options&.additional_query_parameters || {}),
|
327
|
+
"search_criteria": search_criteria
|
328
|
+
}.compact
|
329
|
+
req.url "#{@request_client.get_url(environment: PreEncounter,
|
330
|
+
request_options: request_options)}/patients/v1/search_providers"
|
331
|
+
end
|
332
|
+
parsed_json = JSON.parse(response.body)
|
333
|
+
parsed_json&.map do |item|
|
334
|
+
item = item.to_json
|
335
|
+
CandidApiClient::PreEncounter::Common::Types::ExternalProvider.from_json(json_object: item)
|
336
|
+
end
|
337
|
+
end
|
338
|
+
|
300
339
|
# Gets a patient.
|
301
340
|
#
|
302
341
|
# @param id [String]
|
@@ -361,6 +400,7 @@ module CandidApiClient
|
|
361
400
|
# * :period (Hash)
|
362
401
|
# * :start (Date)
|
363
402
|
# * :end_ (Date)
|
403
|
+
# * :suffix (String)
|
364
404
|
# * :other_names (Array<CandidApiClient::PreEncounter::Common::Types::HumanName>)
|
365
405
|
# * :other_identifiers (Array<CandidApiClient::PreEncounter::Common::Types::ExternalIdentifier>)
|
366
406
|
# * :gender (CandidApiClient::PreEncounter::Common::Types::Gender)
|
@@ -413,6 +453,7 @@ module CandidApiClient
|
|
413
453
|
# * :period (Hash)
|
414
454
|
# * :start (Date)
|
415
455
|
# * :end_ (Date)
|
456
|
+
# * :suffix (String)
|
416
457
|
# * :telecom (Hash)
|
417
458
|
# * :value (String)
|
418
459
|
# * :use (CandidApiClient::PreEncounter::Common::Types::ContactPointUse)
|
@@ -445,7 +486,7 @@ module CandidApiClient
|
|
445
486
|
# api.pre_encounter.patients.v_1.update(
|
446
487
|
# id: "string",
|
447
488
|
# version: "string",
|
448
|
-
# request: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { } }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { } }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { } }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] }
|
489
|
+
# request: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] }
|
449
490
|
# )
|
450
491
|
def update(id:, version:, request:, request_options: nil)
|
451
492
|
response = @request_client.conn.put do |req|
|
@@ -598,6 +639,7 @@ module CandidApiClient
|
|
598
639
|
# * :period (Hash)
|
599
640
|
# * :start (Date)
|
600
641
|
# * :end_ (Date)
|
642
|
+
# * :suffix (String)
|
601
643
|
# * :other_names (Array<CandidApiClient::PreEncounter::Common::Types::HumanName>)
|
602
644
|
# * :other_identifiers (Array<CandidApiClient::PreEncounter::Common::Types::ExternalIdentifier>)
|
603
645
|
# * :gender (CandidApiClient::PreEncounter::Common::Types::Gender)
|
@@ -650,6 +692,7 @@ module CandidApiClient
|
|
650
692
|
# * :period (Hash)
|
651
693
|
# * :start (Date)
|
652
694
|
# * :end_ (Date)
|
695
|
+
# * :suffix (String)
|
653
696
|
# * :telecom (Hash)
|
654
697
|
# * :value (String)
|
655
698
|
# * :use (CandidApiClient::PreEncounter::Common::Types::ContactPointUse)
|
@@ -679,7 +722,7 @@ module CandidApiClient
|
|
679
722
|
# @return [CandidApiClient::PreEncounter::Patients::V1::Types::Patient]
|
680
723
|
# @example
|
681
724
|
# api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
|
682
|
-
# api.pre_encounter.patients.v_1.create(skip_duplicate_check: true, request: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { } }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { } }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { } }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
|
725
|
+
# api.pre_encounter.patients.v_1.create(skip_duplicate_check: true, request: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
|
683
726
|
def create(request:, skip_duplicate_check: nil, request_options: nil)
|
684
727
|
Async do
|
685
728
|
response = @request_client.conn.post do |req|
|
@@ -717,6 +760,7 @@ module CandidApiClient
|
|
717
760
|
# * :period (Hash)
|
718
761
|
# * :start (Date)
|
719
762
|
# * :end_ (Date)
|
763
|
+
# * :suffix (String)
|
720
764
|
# * :other_names (Array<CandidApiClient::PreEncounter::Common::Types::HumanName>)
|
721
765
|
# * :other_identifiers (Array<CandidApiClient::PreEncounter::Common::Types::ExternalIdentifier>)
|
722
766
|
# * :gender (CandidApiClient::PreEncounter::Common::Types::Gender)
|
@@ -769,6 +813,7 @@ module CandidApiClient
|
|
769
813
|
# * :period (Hash)
|
770
814
|
# * :start (Date)
|
771
815
|
# * :end_ (Date)
|
816
|
+
# * :suffix (String)
|
772
817
|
# * :telecom (Hash)
|
773
818
|
# * :value (String)
|
774
819
|
# * :use (CandidApiClient::PreEncounter::Common::Types::ContactPointUse)
|
@@ -798,7 +843,7 @@ module CandidApiClient
|
|
798
843
|
# @return [CandidApiClient::PreEncounter::Patients::V1::Types::Patient]
|
799
844
|
# @example
|
800
845
|
# api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
|
801
|
-
# api.pre_encounter.patients.v_1.create_with_mrn(skip_duplicate_check: true, request: { mrn: "string", name: { family: "string", given: ["string"], use: USUAL, period: { } }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { } }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { } }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { } }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
|
846
|
+
# api.pre_encounter.patients.v_1.create_with_mrn(skip_duplicate_check: true, request: { mrn: "string", name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
|
802
847
|
def create_with_mrn(request:, skip_duplicate_check: nil, request_options: nil)
|
803
848
|
Async do
|
804
849
|
response = @request_client.conn.post do |req|
|
@@ -865,6 +910,42 @@ module CandidApiClient
|
|
865
910
|
end
|
866
911
|
end
|
867
912
|
|
913
|
+
# Searches for referring providers that match the query parameters. The search is
|
914
|
+
# case-insensitive, supports fuzzy matching, and matches against provider name and
|
915
|
+
# NPI. The search criteria must be an alphanumeric string, and the search is
|
916
|
+
# limited to the first 20 results.
|
917
|
+
#
|
918
|
+
# @param search_criteria [String]
|
919
|
+
# @param request_options [CandidApiClient::RequestOptions]
|
920
|
+
# @return [Array<CandidApiClient::PreEncounter::Common::Types::ExternalProvider>]
|
921
|
+
# @example
|
922
|
+
# api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
|
923
|
+
# api.pre_encounter.patients.v_1.search_providers(search_criteria: "string")
|
924
|
+
def search_providers(search_criteria:, request_options: nil)
|
925
|
+
Async do
|
926
|
+
response = @request_client.conn.get do |req|
|
927
|
+
req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
|
928
|
+
req.headers["Authorization"] = request_options.token unless request_options&.token.nil?
|
929
|
+
req.headers = {
|
930
|
+
**(req.headers || {}),
|
931
|
+
**@request_client.get_headers,
|
932
|
+
**(request_options&.additional_headers || {})
|
933
|
+
}.compact
|
934
|
+
req.params = {
|
935
|
+
**(request_options&.additional_query_parameters || {}),
|
936
|
+
"search_criteria": search_criteria
|
937
|
+
}.compact
|
938
|
+
req.url "#{@request_client.get_url(environment: PreEncounter,
|
939
|
+
request_options: request_options)}/patients/v1/search_providers"
|
940
|
+
end
|
941
|
+
parsed_json = JSON.parse(response.body)
|
942
|
+
parsed_json&.map do |item|
|
943
|
+
item = item.to_json
|
944
|
+
CandidApiClient::PreEncounter::Common::Types::ExternalProvider.from_json(json_object: item)
|
945
|
+
end
|
946
|
+
end
|
947
|
+
end
|
948
|
+
|
868
949
|
# Gets a patient.
|
869
950
|
#
|
870
951
|
# @param id [String]
|
@@ -933,6 +1014,7 @@ module CandidApiClient
|
|
933
1014
|
# * :period (Hash)
|
934
1015
|
# * :start (Date)
|
935
1016
|
# * :end_ (Date)
|
1017
|
+
# * :suffix (String)
|
936
1018
|
# * :other_names (Array<CandidApiClient::PreEncounter::Common::Types::HumanName>)
|
937
1019
|
# * :other_identifiers (Array<CandidApiClient::PreEncounter::Common::Types::ExternalIdentifier>)
|
938
1020
|
# * :gender (CandidApiClient::PreEncounter::Common::Types::Gender)
|
@@ -985,6 +1067,7 @@ module CandidApiClient
|
|
985
1067
|
# * :period (Hash)
|
986
1068
|
# * :start (Date)
|
987
1069
|
# * :end_ (Date)
|
1070
|
+
# * :suffix (String)
|
988
1071
|
# * :telecom (Hash)
|
989
1072
|
# * :value (String)
|
990
1073
|
# * :use (CandidApiClient::PreEncounter::Common::Types::ContactPointUse)
|
@@ -1017,7 +1100,7 @@ module CandidApiClient
|
|
1017
1100
|
# api.pre_encounter.patients.v_1.update(
|
1018
1101
|
# id: "string",
|
1019
1102
|
# version: "string",
|
1020
|
-
# request: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { } }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { } }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { } }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { } }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] }
|
1103
|
+
# request: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] }
|
1021
1104
|
# )
|
1022
1105
|
def update(id:, version:, request:, request_options: nil)
|
1023
1106
|
Async do
|
@@ -22,6 +22,9 @@ module CandidApiClient
|
|
22
22
|
attr_reader :authorization_number
|
23
23
|
# @return [String]
|
24
24
|
attr_reader :cpt_code
|
25
|
+
# @return [Boolean] If true, then the authorization will apply for all claims for the payer that
|
26
|
+
# fall in range the `period`.
|
27
|
+
attr_reader :apply_for_all_cpt_codes
|
25
28
|
# @return [CandidApiClient::PreEncounter::Patients::V1::Types::AuthorizationUnit]
|
26
29
|
attr_reader :units
|
27
30
|
# @return [Integer]
|
@@ -43,6 +46,8 @@ module CandidApiClient
|
|
43
46
|
# @param additional_payer_information [CandidApiClient::PreEncounter::Common::Types::AdditionalPayerInformation]
|
44
47
|
# @param authorization_number [String]
|
45
48
|
# @param cpt_code [String]
|
49
|
+
# @param apply_for_all_cpt_codes [Boolean] If true, then the authorization will apply for all claims for the payer that
|
50
|
+
# fall in range the `period`.
|
46
51
|
# @param units [CandidApiClient::PreEncounter::Patients::V1::Types::AuthorizationUnit]
|
47
52
|
# @param quantity [Integer]
|
48
53
|
# @param period [CandidApiClient::PreEncounter::Common::Types::Period]
|
@@ -50,12 +55,13 @@ module CandidApiClient
|
|
50
55
|
# @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
|
51
56
|
# @return [CandidApiClient::PreEncounter::Patients::V1::Types::Authorization]
|
52
57
|
def initialize(payer_id:, payer_name:, authorization_number:, cpt_code:, units:,
|
53
|
-
additional_payer_information: OMIT, quantity: OMIT, period: OMIT, notes: OMIT, additional_properties: nil)
|
58
|
+
additional_payer_information: OMIT, apply_for_all_cpt_codes: OMIT, quantity: OMIT, period: OMIT, notes: OMIT, additional_properties: nil)
|
54
59
|
@payer_id = payer_id
|
55
60
|
@payer_name = payer_name
|
56
61
|
@additional_payer_information = additional_payer_information if additional_payer_information != OMIT
|
57
62
|
@authorization_number = authorization_number
|
58
63
|
@cpt_code = cpt_code
|
64
|
+
@apply_for_all_cpt_codes = apply_for_all_cpt_codes if apply_for_all_cpt_codes != OMIT
|
59
65
|
@units = units
|
60
66
|
@quantity = quantity if quantity != OMIT
|
61
67
|
@period = period if period != OMIT
|
@@ -67,6 +73,7 @@ module CandidApiClient
|
|
67
73
|
"additional_payer_information": additional_payer_information,
|
68
74
|
"authorization_number": authorization_number,
|
69
75
|
"cpt_code": cpt_code,
|
76
|
+
"apply_for_all_cpt_codes": apply_for_all_cpt_codes,
|
70
77
|
"units": units,
|
71
78
|
"quantity": quantity,
|
72
79
|
"period": period,
|
@@ -93,6 +100,7 @@ module CandidApiClient
|
|
93
100
|
end
|
94
101
|
authorization_number = struct["authorization_number"]
|
95
102
|
cpt_code = struct["cpt_code"]
|
103
|
+
apply_for_all_cpt_codes = struct["apply_for_all_cpt_codes"]
|
96
104
|
units = struct["units"]
|
97
105
|
quantity = struct["quantity"]
|
98
106
|
if parsed_json["period"].nil?
|
@@ -108,6 +116,7 @@ module CandidApiClient
|
|
108
116
|
additional_payer_information: additional_payer_information,
|
109
117
|
authorization_number: authorization_number,
|
110
118
|
cpt_code: cpt_code,
|
119
|
+
apply_for_all_cpt_codes: apply_for_all_cpt_codes,
|
111
120
|
units: units,
|
112
121
|
quantity: quantity,
|
113
122
|
period: period,
|
@@ -135,6 +144,7 @@ module CandidApiClient
|
|
135
144
|
obj.additional_payer_information.nil? || CandidApiClient::PreEncounter::Common::Types::AdditionalPayerInformation.validate_raw(obj: obj.additional_payer_information)
|
136
145
|
obj.authorization_number.is_a?(String) != false || raise("Passed value for field obj.authorization_number is not the expected type, validation failed.")
|
137
146
|
obj.cpt_code.is_a?(String) != false || raise("Passed value for field obj.cpt_code is not the expected type, validation failed.")
|
147
|
+
obj.apply_for_all_cpt_codes&.is_a?(Boolean) != false || raise("Passed value for field obj.apply_for_all_cpt_codes is not the expected type, validation failed.")
|
138
148
|
obj.units.is_a?(CandidApiClient::PreEncounter::Patients::V1::Types::AuthorizationUnit) != false || raise("Passed value for field obj.units is not the expected type, validation failed.")
|
139
149
|
obj.quantity&.is_a?(Integer) != false || raise("Passed value for field obj.quantity is not the expected type, validation failed.")
|
140
150
|
obj.period.nil? || CandidApiClient::PreEncounter::Common::Types::Period.validate_raw(obj: obj.period)
|
@@ -100,8 +100,9 @@ module CandidApiClient
|
|
100
100
|
attr_reader :date_of_service
|
101
101
|
# @return [Date]
|
102
102
|
attr_reader :end_date_of_service
|
103
|
-
# @return [Array<CandidApiClient::ServiceLines::V2::Types::TestResult>]
|
104
|
-
#
|
103
|
+
# @return [Array<CandidApiClient::ServiceLines::V2::Types::TestResult>] Contains a list of test results. Test result types may map to MEA-02 on the
|
104
|
+
# 837-P (ex: Hemoglobin, Hematocrit).
|
105
|
+
# No more than 5 MEA-02 test results may be submitted per service line.
|
105
106
|
attr_reader :test_results
|
106
107
|
# @return [Boolean] Maps to SV1-11 on the 837-P and Box 24H on the CMS-1500.
|
107
108
|
# If the value is true, the box will be populated with "Y". Otherwise, the box
|
@@ -162,8 +163,9 @@ module CandidApiClient
|
|
162
163
|
# Maps to SV1-01, C003-07 on the 837-P.
|
163
164
|
# @param date_of_service [Date]
|
164
165
|
# @param end_date_of_service [Date]
|
165
|
-
# @param test_results [Array<CandidApiClient::ServiceLines::V2::Types::TestResult>]
|
166
|
-
#
|
166
|
+
# @param test_results [Array<CandidApiClient::ServiceLines::V2::Types::TestResult>] Contains a list of test results. Test result types may map to MEA-02 on the
|
167
|
+
# 837-P (ex: Hemoglobin, Hematocrit).
|
168
|
+
# No more than 5 MEA-02 test results may be submitted per service line.
|
167
169
|
# @param has_epsdt_indicator [Boolean] Maps to SV1-11 on the 837-P and Box 24H on the CMS-1500.
|
168
170
|
# If the value is true, the box will be populated with "Y". Otherwise, the box
|
169
171
|
# will not be populated.
|
@@ -59,8 +59,9 @@ module CandidApiClient
|
|
59
59
|
# than the rendering provider for this service line.
|
60
60
|
# If not required by this implementation guide, do not send.
|
61
61
|
attr_reader :ordering_provider
|
62
|
-
# @return [Array<CandidApiClient::ServiceLines::V2::Types::TestResult>]
|
63
|
-
#
|
62
|
+
# @return [Array<CandidApiClient::ServiceLines::V2::Types::TestResult>] Contains a list of test results. Test result types may map to MEA-02 on the
|
63
|
+
# 837-P (ex: Hemoglobin, Hematocrit).
|
64
|
+
# No more than 5 MEA-02 test results may be submitted per service line.
|
64
65
|
attr_reader :test_results
|
65
66
|
# @return [OpenStruct] Additional properties unmapped to the current class definition
|
66
67
|
attr_reader :additional_properties
|
@@ -100,8 +101,9 @@ module CandidApiClient
|
|
100
101
|
# @param ordering_provider [CandidApiClient::EncounterProviders::V2::Types::OrderingProvider] Required when the service or supply was ordered by a provider who is different
|
101
102
|
# than the rendering provider for this service line.
|
102
103
|
# If not required by this implementation guide, do not send.
|
103
|
-
# @param test_results [Array<CandidApiClient::ServiceLines::V2::Types::TestResult>]
|
104
|
-
#
|
104
|
+
# @param test_results [Array<CandidApiClient::ServiceLines::V2::Types::TestResult>] Contains a list of test results. Test result types may map to MEA-02 on the
|
105
|
+
# 837-P (ex: Hemoglobin, Hematocrit).
|
106
|
+
# No more than 5 MEA-02 test results may be submitted per service line.
|
105
107
|
# @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
|
106
108
|
# @return [CandidApiClient::ServiceLines::V2::Types::ServiceLineCreate]
|
107
109
|
def initialize(procedure_code:, quantity:, units:, diagnosis_pointers:, modifiers: OMIT,
|