@icure/be-fhc-api 0.6.2 → 0.6.3
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.
- package/api/fhcEagreementApi.d.ts +7 -7
- package/api/fhcEagreementApi.js +26 -18
- package/api/fhcEattestV3Api.d.ts +4 -2
- package/api/fhcEattestV3Api.js +6 -2
- package/api/fhcHubApi.d.ts +354 -352
- package/api/fhcHubApi.js +356 -354
- package/api/fhcMediprimaApi.d.ts +22 -2
- package/api/fhcMediprimaApi.js +56 -2
- package/api/fhcStsApi.d.ts +16 -16
- package/api/fhcStsApi.js +16 -16
- package/model/AgreementResponse.d.ts +1 -1
- package/model/Author.d.ts +19 -0
- package/model/Author.js +20 -0
- package/model/CbssStatusType.d.ts +19 -0
- package/model/CbssStatusType.js +9 -0
- package/model/EAgreementResponse.d.ts +24 -0
- package/model/EAgreementResponse.js +10 -0
- package/model/InsurancyMembership.d.ts +16 -0
- package/model/InsurancyMembership.js +20 -0
- package/model/InsurancyStatus.d.ts +18 -0
- package/model/InsurancyStatus.js +20 -0
- package/model/MedicalCardRegistryMessageType.d.ts +19 -0
- package/model/MedicalCardRegistryMessageType.js +9 -0
- package/model/MedicalCardRegistryStatusType.d.ts +16 -0
- package/model/MedicalCardRegistryStatusType.js +9 -0
- package/model/MediprimaMdaResponse.d.ts +23 -0
- package/model/MediprimaMdaResponse.js +9 -0
- package/model/MediprimaNumber.d.ts +16 -0
- package/model/MediprimaNumber.js +20 -0
- package/model/Prescription.d.ts +2 -2
- package/model/Pswc.d.ts +17 -0
- package/model/Pswc.js +20 -0
- package/model/TarificationMediprimaConsultationResult.d.ts +26 -0
- package/model/TarificationMediprimaConsultationResult.js +9 -0
- package/model/models.d.ts +11 -0
- package/model/models.js +11 -0
- package/package.json +1 -1
package/api/fhcHubApi.d.ts
CHANGED
|
@@ -34,422 +34,424 @@ export declare class fhcHubApi {
|
|
|
34
34
|
setHeaders(h: Array<XHR.Header>): void;
|
|
35
35
|
handleError(e: XHR.XHRError): never;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
38
|
-
* @summary
|
|
37
|
+
* This endpoint converts a Kmehr XML message to a JSON representation. It is useful for applications that need to process Kmehr messages in JSON format.
|
|
38
|
+
* @summary Utlity method to convert Kmehr XML to JSON
|
|
39
39
|
* @param body message
|
|
40
40
|
*/
|
|
41
41
|
convertKmehrXMLtoJSONUsingPOST(body?: string): Promise<Kmehrmessage>;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
44
|
-
* @summary
|
|
45
|
-
* @param endpoint
|
|
46
|
-
* @param xFHCKeystoreId
|
|
47
|
-
* @param xFHCTokenId
|
|
48
|
-
* @param xFHCPassPhrase
|
|
49
|
-
* @param hcpLastName
|
|
50
|
-
* @param hcpFirstName
|
|
51
|
-
* @param hcpNihii
|
|
52
|
-
* @param hcpSsin
|
|
53
|
-
* @param hcpZip
|
|
54
|
-
* @param sv
|
|
55
|
-
* @param sl
|
|
56
|
-
* @param value value
|
|
57
|
-
* @param hubPackageId
|
|
43
|
+
* This endpoint allows a healthcare provider to check the access rights of another healthcare provider to access a patient's data. It requires the healthcare provider's information and the identifiers of the document and the rights that need to be checked.
|
|
44
|
+
* @summary Get the access right for a healthcare provider to access a patient's data
|
|
45
|
+
* @param endpoint Endpoint URL of the hub (e.g., https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, etc.)
|
|
46
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
47
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
48
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
49
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
50
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
51
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
52
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
53
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
54
|
+
* @param sv The SV part of the identifier of the transaction. Obtained from the transaction list.
|
|
55
|
+
* @param sl The SL part of the identifier of the transaction. Obtained from the transaction list.
|
|
56
|
+
* @param value The value of the transaction to manage, usually the ID of the transaction
|
|
57
|
+
* @param hubPackageId The hub package ID, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
58
58
|
*/
|
|
59
59
|
getAccessRightUsingGET(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, sv: string, sl: string, value: string, hubPackageId?: string): Promise<GetAccessRightResponse>;
|
|
60
60
|
/**
|
|
61
|
-
*
|
|
62
|
-
* @summary
|
|
63
|
-
* @param endpoint endpoint
|
|
64
|
-
* @param xFHCKeystoreId
|
|
65
|
-
* @param xFHCTokenId
|
|
66
|
-
* @param xFHCPassPhrase
|
|
67
|
-
* @param hcpNihii
|
|
68
|
-
* @param hcpLastName
|
|
69
|
-
* @param hcpFirstName
|
|
70
|
-
* @param hcpSsin
|
|
71
|
-
* @param hcpZip
|
|
72
|
-
* @param hubPackageId
|
|
61
|
+
* This endpoint allows to retrieve the consent status of a healthcare provider that determines if an hcp has the right to access the hub. It requires the healthcare provider's information.
|
|
62
|
+
* @summary Get the consent status of a healthcare provider
|
|
63
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
64
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
65
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
66
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
67
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
68
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
69
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
70
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
71
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
72
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
73
73
|
*/
|
|
74
74
|
getHcpConsentUsingGET(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpNihii: string, hcpLastName: string, hcpFirstName: string, hcpSsin: string, hcpZip: string, hubPackageId?: string): Promise<HcPartyConsentDto>;
|
|
75
75
|
/**
|
|
76
|
-
*
|
|
77
|
-
* @summary
|
|
78
|
-
* @param endpoint endpoint
|
|
79
|
-
* @param xFHCKeystoreId
|
|
80
|
-
* @param xFHCTokenId
|
|
81
|
-
* @param xFHCPassPhrase
|
|
82
|
-
* @param hcpLastName
|
|
83
|
-
* @param hcpFirstName
|
|
84
|
-
* @param hcpNihii
|
|
85
|
-
* @param hcpSsin
|
|
86
|
-
* @param hcpZip
|
|
87
|
-
* @param hubPackageId
|
|
88
|
-
* @param from
|
|
89
|
-
* @param to
|
|
90
|
-
* @param authorNihii
|
|
91
|
-
* @param authorSsin
|
|
92
|
-
* @param isGlobal
|
|
93
|
-
* @param breakTheGlassReason
|
|
94
|
-
* @param ssin
|
|
95
|
-
* @param sv
|
|
96
|
-
* @param sl
|
|
97
|
-
* @param id
|
|
76
|
+
* This endpoint allows to retrieve the audit trail of a patient. It requires the healthcare provider's information, the patient's SSIN, and the hub package ID. The date range, author information, and transaction types can be provided to filter the results.
|
|
77
|
+
* @summary Get the audit trail of a patient
|
|
78
|
+
* @param endpoint value = 'The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)'
|
|
79
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
80
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
81
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
82
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
83
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
84
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
85
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
86
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
87
|
+
* @param hubPackageId The hub package ID, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
88
|
+
* @param from The start date of the search for transactions in format YYYYMMDD
|
|
89
|
+
* @param to The end date of the search for transactions in format YYYYMMDD
|
|
90
|
+
* @param authorNihii The Nihii of the author of the transaction, optional
|
|
91
|
+
* @param authorSsin The SSIN of the author of the transaction, optional
|
|
92
|
+
* @param isGlobal Whether the transaction search is global (on all hubs through intrahub) or local (on the hub where the request is made)
|
|
93
|
+
* @param breakTheGlassReason Allows a break the glass request (without a therapeutic link) by providing the reason for breaking the glass
|
|
94
|
+
* @param ssin The SSIN of the patient, optional
|
|
95
|
+
* @param sv The SV part of the identifier of the transaction, optional
|
|
96
|
+
* @param sl The SL part of the identifier of the transaction, optional
|
|
97
|
+
* @param id The ID of the transaction, optional
|
|
98
98
|
*/
|
|
99
99
|
getPatientAuditTrailUsingGET(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, hubPackageId?: string, from?: number, to?: number, authorNihii?: string, authorSsin?: string, isGlobal?: boolean, breakTheGlassReason?: string, ssin?: string, sv?: string, sl?: string, id?: string): Promise<GetPatientAuditTrailResponse>;
|
|
100
100
|
/**
|
|
101
|
-
*
|
|
102
|
-
* @summary
|
|
103
|
-
* @param endpoint endpoint
|
|
104
|
-
* @param xFHCKeystoreId
|
|
105
|
-
* @param xFHCTokenId
|
|
106
|
-
* @param xFHCPassPhrase
|
|
107
|
-
* @param hcpLastName
|
|
108
|
-
* @param hcpFirstName
|
|
109
|
-
* @param hcpNihii
|
|
110
|
-
* @param hcpSsin
|
|
111
|
-
* @param hcpZip
|
|
112
|
-
* @param patientSsin
|
|
113
|
-
* @param hubPackageId
|
|
101
|
+
* This endpoint allows to retrieve a patient's consent from the hubs, in other words, the patient's consent of having institutions and healthcare providers put some information on the hubs. It requires the healthcare provider's information and the patient's SSIN.
|
|
102
|
+
* @summary Get a patient's consent
|
|
103
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
104
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
105
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
106
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
107
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
108
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
109
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
110
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
111
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
112
|
+
* @param patientSsin The SSIN of the patient
|
|
113
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
114
114
|
*/
|
|
115
115
|
getPatientConsentUsingGET1(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, patientSsin: string, hubPackageId?: string): Promise<Consent>;
|
|
116
116
|
/**
|
|
117
|
-
*
|
|
118
|
-
* @summary
|
|
119
|
-
* @param endpoint endpoint
|
|
120
|
-
* @param xFHCKeystoreId
|
|
121
|
-
* @param xFHCTokenId
|
|
122
|
-
* @param xFHCPassPhrase
|
|
123
|
-
* @param hcpLastName
|
|
124
|
-
* @param hcpFirstName
|
|
125
|
-
* @param hcpNihii
|
|
126
|
-
* @param hcpSsin
|
|
127
|
-
* @param hcpZip
|
|
128
|
-
* @param patientSsin
|
|
129
|
-
* @param hubPackageId
|
|
117
|
+
* This endpoint allows to retrieve a patient's information from the hubs. It requires the healthcare provider's information and the patient's SSIN.
|
|
118
|
+
* @summary Get a patient from the hubs
|
|
119
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
120
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
121
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
122
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
123
|
+
* @param hcpLastName The last name of the healthcare party
|
|
124
|
+
* @param hcpFirstName The first name of the healthcare party
|
|
125
|
+
* @param hcpNihii The Nihii of the healthcare party
|
|
126
|
+
* @param hcpSsin The SSIN of the healthcare party
|
|
127
|
+
* @param hcpZip The ZIP code of the healthcare party
|
|
128
|
+
* @param patientSsin The SSIN of the patient
|
|
129
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
130
130
|
*/
|
|
131
131
|
getPatientUsingGET(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, patientSsin: string, hubPackageId?: string): Promise<Patient>;
|
|
132
132
|
/**
|
|
133
|
-
*
|
|
134
|
-
* @summary
|
|
135
|
-
* @param endpoint endpoint
|
|
136
|
-
* @param xFHCKeystoreId
|
|
137
|
-
* @param xFHCTokenId
|
|
138
|
-
* @param xFHCPassPhrase
|
|
139
|
-
* @param hcpLastName
|
|
140
|
-
* @param hcpFirstName
|
|
141
|
-
* @param hcpNihii
|
|
142
|
-
* @param hcpSsin
|
|
143
|
-
* @param hcpZip
|
|
144
|
-
* @param patientSsin
|
|
145
|
-
* @param hubPackageId
|
|
146
|
-
* @param therLinkType
|
|
147
|
-
* @param from
|
|
148
|
-
* @param to
|
|
133
|
+
* This endpoint allows to retrieve therapeutic links for a patient. It requires the healthcare provider's information, the patient's SSIN, and some optional parameters such as the type of therapeutic link, start and end dates.
|
|
134
|
+
* @summary Get therapeutic links for a patient
|
|
135
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
136
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
137
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
138
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
139
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
140
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
141
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
142
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
143
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
144
|
+
* @param patientSsin The SSIN of the patient
|
|
145
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
146
|
+
* @param therLinkType The type of the therapeutic link to retrieve
|
|
147
|
+
* @param from The start date of the therapeutic link in format YYYYMMDD
|
|
148
|
+
* @param to The end date of the therapeutic link in format YYYYMMDD
|
|
149
149
|
*/
|
|
150
150
|
getTherapeuticLinksUsingGET(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, patientSsin: string, hubPackageId?: string, therLinkType?: string, from?: number, to?: number): Promise<TherapeuticLinkMessageDto>;
|
|
151
151
|
/**
|
|
152
|
-
*
|
|
153
|
-
* @summary
|
|
154
|
-
* @param endpoint
|
|
155
|
-
* @param xFHCKeystoreId
|
|
156
|
-
* @param xFHCTokenId
|
|
157
|
-
* @param xFHCPassPhrase
|
|
158
|
-
* @param hcpLastName
|
|
159
|
-
* @param hcpFirstName
|
|
160
|
-
* @param hcpNihii
|
|
161
|
-
* @param hcpSsin
|
|
162
|
-
* @param hcpZip
|
|
163
|
-
* @param ssin
|
|
164
|
-
* @param sv
|
|
165
|
-
* @param sl
|
|
166
|
-
* @param id
|
|
167
|
-
* @param hubPackageId
|
|
168
|
-
* @param breakTheGlassReason
|
|
169
|
-
* @param externalHubId
|
|
170
|
-
* @param externalHubName
|
|
152
|
+
* This endpoint allows to retrieve a specific transaction message for a patient. It requires the healthcare provider's information, the patient's SSIN, and the transaction ID.
|
|
153
|
+
* @summary Get a transaction of type message for a patient converted to JSON for easy frontend parsing
|
|
154
|
+
* @param endpoint Endpoint URL of the hub (e.g., https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, etc.)
|
|
155
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
156
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
157
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
158
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
159
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
160
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
161
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
162
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
163
|
+
* @param ssin The SSIN of the patient
|
|
164
|
+
* @param sv The SV part of the identifier of the transaction. Obtained from the transaction list.
|
|
165
|
+
* @param sl The SL part of the identifier of the transaction. Obtained from the transaction list.
|
|
166
|
+
* @param id The ID of the transaction to retrieve
|
|
167
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
168
|
+
* @param breakTheGlassReason Allows a break the glass request (without a therapeutic link) by providing the reason for breaking the glass
|
|
169
|
+
* @param externalHubId The ID of the hub (1990000035 for RSW, 1990000728 for Abrumet, 1990000134 for Cozo, 1990001916 for Vitalink, ...)
|
|
170
|
+
* @param externalHubName The name of the hub
|
|
171
171
|
*/
|
|
172
172
|
getTransactionMessageUsingGET(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, ssin: string, sv: string, sl: string, id: string, hubPackageId?: string, breakTheGlassReason?: string, externalHubId?: string, externalHubName?: string): Promise<Kmehrmessage>;
|
|
173
173
|
/**
|
|
174
|
-
*
|
|
175
|
-
* @summary
|
|
176
|
-
* @param endpoint
|
|
177
|
-
* @param xFHCKeystoreId
|
|
178
|
-
* @param xFHCTokenId
|
|
179
|
-
* @param xFHCPassPhrase
|
|
180
|
-
* @param hcpLastName
|
|
181
|
-
* @param hcpFirstName
|
|
182
|
-
* @param hcpNihii
|
|
183
|
-
* @param hcpSsin
|
|
184
|
-
* @param hcpZip
|
|
185
|
-
* @param ssin
|
|
186
|
-
* @param sv
|
|
187
|
-
* @param sl
|
|
188
|
-
* @param id
|
|
189
|
-
* @param hubPackageId
|
|
190
|
-
* @param breakTheGlassReason
|
|
191
|
-
* @param externalHubId
|
|
192
|
-
* @param externalHubName
|
|
174
|
+
* This endpoint allows to retrieve a transaction set for a patient. It requires the healthcare provider's information, the patient's SSIN, and the transaction set identifier.
|
|
175
|
+
* @summary Get a transaction set (a collection of transactions) for a patient. This is mainly used for medication schemes. Returns the message in JSON format for easy frontend parsing.
|
|
176
|
+
* @param endpoint Endpoint URL of the hub (e.g., https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, etc.)
|
|
177
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
178
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
179
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
180
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
181
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
182
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
183
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
184
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
185
|
+
* @param ssin The SSIN of the patient
|
|
186
|
+
* @param sv The SV part of the identifier of the transaction set. Obtained from the transaction list.
|
|
187
|
+
* @param sl The SL part of the identifier of the transaction set. Obtained from the transaction list.
|
|
188
|
+
* @param id The ID of the transaction set to retrieve
|
|
189
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
190
|
+
* @param breakTheGlassReason Allows a break the glass request (without a therapeutic link) by providing the reason for breaking the glass
|
|
191
|
+
* @param externalHubId The ID of the hub (1990000035 for RSW, 1990000728 for Abrumet, 1990000134 for Cozo, 1990001916 for Vitalink, ...)
|
|
192
|
+
* @param externalHubName The name of the hub
|
|
193
193
|
*/
|
|
194
194
|
getTransactionSetMessageUsingGET(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, ssin: string, sv: string, sl: string, id: string, hubPackageId?: string, breakTheGlassReason?: string, externalHubId?: string, externalHubName?: string): Promise<Kmehrmessage>;
|
|
195
195
|
/**
|
|
196
|
-
*
|
|
197
|
-
* @summary
|
|
198
|
-
* @param endpoint endpoint
|
|
199
|
-
* @param xFHCKeystoreId
|
|
200
|
-
* @param xFHCTokenId
|
|
201
|
-
* @param xFHCPassPhrase
|
|
202
|
-
* @param hcpLastName
|
|
203
|
-
* @param hcpFirstName
|
|
204
|
-
* @param hcpNihii
|
|
205
|
-
* @param hcpSsin
|
|
206
|
-
* @param hcpZip
|
|
207
|
-
* @param ssin
|
|
208
|
-
* @param sv
|
|
209
|
-
* @param sl
|
|
210
|
-
* @param id
|
|
211
|
-
* @param hubPackageId
|
|
212
|
-
* @param breakTheGlassReason
|
|
213
|
-
* @param externalHubId
|
|
214
|
-
* @param externalHubName
|
|
196
|
+
* This endpoint allows to retrieve a transaction set for a patient. It requires the healthcare provider's information, the patient's SSIN, and the transaction set identifier.
|
|
197
|
+
* @summary Get a transaction set (a collection of transactions) for a patient. This is mainly used for medication schemes.
|
|
198
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
199
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
200
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
201
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
202
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
203
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
204
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
205
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
206
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
207
|
+
* @param ssin The SSIN of the patient
|
|
208
|
+
* @param sv The SV part of the identifier of the transaction set. Obtained from the transaction list.
|
|
209
|
+
* @param sl The SL part of the identifier of the transaction set. Obtained from the transaction list.
|
|
210
|
+
* @param id The ID of the transaction set to retrieve
|
|
211
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
212
|
+
* @param breakTheGlassReason Allows a break the glass request (without a therapeutic link) by providing the reason for breaking the glass
|
|
213
|
+
* @param externalHubId The ID of the hub (1990000035 for RSW, 1990000728 for Abrumet, 1990000134 for Cozo, 1990001916 for Vitalink, ...)
|
|
214
|
+
* @param externalHubName The name of the hub, if applicable
|
|
215
215
|
*/
|
|
216
216
|
getTransactionSetUsingGET(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, ssin: string, sv: string, sl: string, id: string, hubPackageId?: string, breakTheGlassReason?: string, externalHubId?: string, externalHubName?: string): Promise<Kmehrmessage>;
|
|
217
217
|
/**
|
|
218
|
-
*
|
|
219
|
-
* @summary
|
|
220
|
-
* @param endpoint endpoint
|
|
221
|
-
* @param xFHCKeystoreId
|
|
222
|
-
* @param xFHCTokenId
|
|
223
|
-
* @param xFHCPassPhrase
|
|
224
|
-
* @param hcpLastName
|
|
225
|
-
* @param hcpFirstName
|
|
226
|
-
* @param hcpNihii
|
|
227
|
-
* @param hcpSsin
|
|
228
|
-
* @param hcpZip
|
|
229
|
-
* @param ssin
|
|
230
|
-
* @param sv
|
|
231
|
-
* @param sl
|
|
232
|
-
* @param id
|
|
233
|
-
* @param hubPackageId
|
|
234
|
-
* @param breakTheGlassReason
|
|
235
|
-
* @param externalHubId
|
|
236
|
-
* @param externalHubName
|
|
218
|
+
* This endpoint allows to retrieve a specific transaction for a patient. It requires the healthcare provider's information, the patient's SSIN, and the transaction ID.
|
|
219
|
+
* @summary Get a transaction (document, scan, ...) for a patient
|
|
220
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
221
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
222
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
223
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
224
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
225
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
226
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
227
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
228
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
229
|
+
* @param ssin The SSIN of the patient
|
|
230
|
+
* @param sv The SV part of the identifier of the transaction. Obtained from the transaction list.
|
|
231
|
+
* @param sl The SL part of the identifier of the transaction. Obtained from the transaction list.
|
|
232
|
+
* @param id The ID of the transaction to retrieve
|
|
233
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
234
|
+
* @param breakTheGlassReason Allows a break the glass request (without a therapeutic link) by providing the reason for breaking the glass
|
|
235
|
+
* @param externalHubId The ID of the hub (1990000035 for RSW, 1990000728 for Abrumet, 1990000134 for Cozo, 1990001916 for Vitalink, ...)
|
|
236
|
+
* @param externalHubName The name of the hub, if applicable
|
|
237
237
|
*/
|
|
238
238
|
getTransactionUsingGET(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, ssin: string, sv: string, sl: string, id: string, hubPackageId?: string, breakTheGlassReason?: string, externalHubId?: string, externalHubName?: string): Promise<Kmehrmessage>;
|
|
239
239
|
/**
|
|
240
|
-
*
|
|
241
|
-
* @summary
|
|
242
|
-
* @param endpoint endpoint
|
|
243
|
-
* @param xFHCKeystoreId
|
|
244
|
-
* @param xFHCTokenId
|
|
245
|
-
* @param xFHCPassPhrase
|
|
246
|
-
* @param hcpLastName
|
|
247
|
-
* @param hcpFirstName
|
|
248
|
-
* @param hcpNihii
|
|
249
|
-
* @param hcpSsin
|
|
250
|
-
* @param hcpZip
|
|
251
|
-
* @param patientSsin
|
|
252
|
-
* @param hubPackageId
|
|
253
|
-
* @param from
|
|
254
|
-
* @param to
|
|
255
|
-
* @param authorNihii
|
|
256
|
-
* @param authorSsin
|
|
257
|
-
* @param isGlobal
|
|
258
|
-
* @param breakTheGlassReason
|
|
259
|
-
* @param transactionTypes
|
|
240
|
+
* This endpoint allows to retrieve the list of transactions for a patient. It requires the healthcare provider's information, the patient's SSIN, and the hub package ID. The date range, author information, and transaction types can be provided to filter the results.
|
|
241
|
+
* @summary Get the list of transactions (documents, scans, ...) for a patient
|
|
242
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
243
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
244
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
245
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
246
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
247
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
248
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
249
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
250
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
251
|
+
* @param patientSsin The SSIN of the patient
|
|
252
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
253
|
+
* @param from The start date of the search for transactions in format YYYYMMDD
|
|
254
|
+
* @param to The end date of the search for transactions in format YYYYMMDD
|
|
255
|
+
* @param authorNihii The Nihii of the author of the transaction, optional
|
|
256
|
+
* @param authorSsin The SSIN of the author of the transaction, optional
|
|
257
|
+
* @param isGlobal Whether the transaction search is global (on all hubs through intrahub) or local (on the hub where the request is made)
|
|
258
|
+
* @param breakTheGlassReason Allows a break the glass request (without a therapeutic link) by providing the reason for breaking the glass
|
|
259
|
+
* @param transactionTypes The list of transaction types to filter the results, such as 'document', 'scan', 'message', etc. If not provided, all transaction types are returned.
|
|
260
260
|
*/
|
|
261
261
|
getTransactionsListUsingGET(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, patientSsin: string, hubPackageId?: string, from?: number, to?: number, authorNihii?: string, authorSsin?: string, isGlobal?: boolean, breakTheGlassReason?: string, transactionTypes?: Array<string>): Promise<Array<TransactionSummaryDto>>;
|
|
262
262
|
/**
|
|
263
|
-
*
|
|
264
|
-
* @summary
|
|
265
|
-
* @param endpoint endpoint
|
|
266
|
-
* @param xFHCKeystoreId
|
|
267
|
-
* @param xFHCTokenId
|
|
268
|
-
* @param xFHCPassPhrase
|
|
269
|
-
* @param hcpLastName
|
|
270
|
-
* @param hcpFirstName
|
|
271
|
-
* @param hcpNihii
|
|
272
|
-
* @param hcpSsin
|
|
273
|
-
* @param hcpZip
|
|
274
|
-
* @param sv
|
|
275
|
-
* @param sl
|
|
276
|
-
* @param value value
|
|
277
|
-
* @param accessRight
|
|
278
|
-
* @param accessNihii
|
|
279
|
-
* @param accessSsin
|
|
280
|
-
* @param hubPackageId
|
|
263
|
+
* This endpoint allows a healthcare provider to manage access rights for another healthcare provider to access a patient's data. It requires the healthcare provider's information, the identifiers of the document and the rights that need to be set.
|
|
264
|
+
* @summary Put an access right for a healthcare provider to access a patient's data
|
|
265
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
266
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
267
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
268
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
269
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
270
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
271
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
272
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
273
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
274
|
+
* @param sv The SV part of the identifier of the transaction. Obtained from the transaction list.
|
|
275
|
+
* @param sl The SL part of the identifier of the transaction. Obtained from the transaction list.
|
|
276
|
+
* @param value The value of the transaction to manage, usually the ID of the transaction
|
|
277
|
+
* @param accessRight The access right to set for the healthcare provider (allow, disallow)
|
|
278
|
+
* @param accessNihii The Nihii of the healthcare provider to allow/disallow access, optional
|
|
279
|
+
* @param accessSsin The SSIN of the healthcare provider to allow/disallow access, optional
|
|
280
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
281
281
|
*/
|
|
282
282
|
putAccessRightUsingPOST(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, sv: string, sl: string, value: string, accessRight: string, accessNihii?: string, accessSsin?: string, hubPackageId?: string): Promise<PutAccessRightResponse>;
|
|
283
283
|
/**
|
|
284
|
-
*
|
|
285
|
-
* @summary
|
|
286
|
-
* @param endpoint endpoint
|
|
287
|
-
* @param xFHCKeystoreId
|
|
288
|
-
* @param xFHCTokenId
|
|
289
|
-
* @param xFHCPassPhrase
|
|
290
|
-
* @param hcpLastName
|
|
291
|
-
* @param hcpFirstName
|
|
292
|
-
* @param hcpNihii
|
|
293
|
-
* @param hcpSsin
|
|
294
|
-
* @param hcpZip
|
|
295
|
-
* @param patientSsin
|
|
296
|
-
* @param firstName
|
|
297
|
-
* @param lastName
|
|
298
|
-
* @param gender gender
|
|
299
|
-
* @param dateOfBirth
|
|
300
|
-
* @param hubPackageId
|
|
284
|
+
* This endpoint allows to create or update a patient in the hubs. It requires the healthcare provider's information and the patient's details.It allows a healthcare provider to register a patient in the hub system, which is necessary for managing patient data and consent.
|
|
285
|
+
* @summary Create or update a patient in the hubs
|
|
286
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
287
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
288
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
289
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
290
|
+
* @param hcpLastName The last name of the healthcare party
|
|
291
|
+
* @param hcpFirstName The first name of the healthcare party
|
|
292
|
+
* @param hcpNihii The Nihii of the healthcare party
|
|
293
|
+
* @param hcpSsin The SSIN of the healthcare party
|
|
294
|
+
* @param hcpZip The ZIP code of the healthcare party
|
|
295
|
+
* @param patientSsin The SSIN of the patient
|
|
296
|
+
* @param firstName The first name of the patient
|
|
297
|
+
* @param lastName The last name of the patient
|
|
298
|
+
* @param gender The gender of the patient
|
|
299
|
+
* @param dateOfBirth The date of birth of the patient in YYYYMMDD format
|
|
300
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. THis ID is usually different for acceptance and production environments.
|
|
301
301
|
*/
|
|
302
302
|
putPatientUsingPOST(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, patientSsin: string, firstName: string, lastName: string, gender: string, dateOfBirth: number, hubPackageId?: string): Promise<Patient>;
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
305
|
-
* @summary
|
|
306
|
-
* @param body message
|
|
307
|
-
* @param endpoint endpoint
|
|
308
|
-
* @param xFHCKeystoreId
|
|
309
|
-
* @param xFHCTokenId
|
|
310
|
-
* @param xFHCPassPhrase
|
|
311
|
-
* @param hcpLastName
|
|
312
|
-
* @param hcpFirstName
|
|
313
|
-
* @param hcpNihii
|
|
314
|
-
* @param hcpSsin
|
|
315
|
-
* @param hcpZip
|
|
316
|
-
* @param hubId
|
|
317
|
-
* @param patientSsin
|
|
318
|
-
* @param hubPackageId
|
|
319
|
-
* @param hubApplication
|
|
304
|
+
* This endpoint allows a healthcare provider to put a transaction set for a patient. It requires the healthcare provider's information, the patient's SSIN, and the transaction set message.
|
|
305
|
+
* @summary Put a transaction set (a collection of transactions) for a patient. This is mainly used for medication schemes.
|
|
306
|
+
* @param body The transaction set message in Kmehr format
|
|
307
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
308
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
309
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
310
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
311
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
312
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
313
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
314
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
315
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
316
|
+
* @param hubId The ID of the hub (1990000035 for RSW, 1990000728 for Abrumet, 1990000134 for Cozo, 1990001916 for Vitalink, ...)
|
|
317
|
+
* @param patientSsin The SSIN of the patient
|
|
318
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
319
|
+
* @param hubApplication Legacy, leave as null.
|
|
320
320
|
*/
|
|
321
321
|
putTransactionSetUsingPOST(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, hubId: number, patientSsin: string, hubPackageId?: string, hubApplication?: string, body?: string): Promise<PutTransactionSetResponse>;
|
|
322
322
|
/**
|
|
323
|
-
*
|
|
324
|
-
* @summary
|
|
325
|
-
* @param body message
|
|
326
|
-
* @param endpoint endpoint
|
|
327
|
-
* @param xFHCKeystoreId
|
|
328
|
-
* @param xFHCTokenId
|
|
329
|
-
* @param xFHCPassPhrase
|
|
330
|
-
* @param hcpLastName
|
|
331
|
-
* @param hcpFirstName
|
|
332
|
-
* @param hcpNihii
|
|
333
|
-
* @param hcpSsin
|
|
334
|
-
* @param hcpZip
|
|
335
|
-
* @param hubId
|
|
336
|
-
* @param patientSsin
|
|
337
|
-
* @param hubPackageId
|
|
338
|
-
* @param hubApplication
|
|
323
|
+
* This endpoint allows a healthcare provider to put a transaction for a patient. It requires the healthcare provider's information, the patient's SSIN, and the transaction message.
|
|
324
|
+
* @summary Put a transaction (document, scan, ...) on the hubs for a patient
|
|
325
|
+
* @param body The transaction message in Kmehr format
|
|
326
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
327
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
328
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
329
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
330
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
331
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
332
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
333
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
334
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
335
|
+
* @param hubId The ID of the hub (1990000035 for RSW, 1990000728 for Abrumet, 1990000134 for Cozo, 1990001916 for Vitalink, ...)
|
|
336
|
+
* @param patientSsin The SSIN of the patient
|
|
337
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
338
|
+
* @param hubApplication Legacy, leave as null.
|
|
339
339
|
*/
|
|
340
340
|
putTransactionUsingPOST(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, hubId: number, patientSsin: string, hubPackageId?: string, hubApplication?: string, body?: string): Promise<PutTransactionResponseDto>;
|
|
341
341
|
/**
|
|
342
|
-
*
|
|
343
|
-
* @summary
|
|
344
|
-
* @param endpoint endpoint
|
|
345
|
-
* @param xFHCKeystoreId
|
|
346
|
-
* @param xFHCTokenId
|
|
347
|
-
* @param xFHCPassPhrase
|
|
348
|
-
* @param hcpLastName
|
|
349
|
-
* @param hcpFirstName
|
|
350
|
-
* @param hcpNihii
|
|
351
|
-
* @param hcpSsin
|
|
352
|
-
* @param hcpZip
|
|
353
|
-
* @param patientSsin
|
|
354
|
-
* @param hubPackageId
|
|
355
|
-
* @param patientEidCardNumber
|
|
356
|
-
* @param patientIsiCardNumber
|
|
342
|
+
* This endpoint allows a healthcare provider to register a patient's consent in the hub system. It requires the healthcare provider's information and the patient's SSIN.It also requires some kind of proof of the patient's presence, such as an eid card number or isi card number for a child.
|
|
343
|
+
* @summary Register a patient consent
|
|
344
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
345
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
346
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
347
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
348
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
349
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
350
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
351
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
352
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
353
|
+
* @param patientSsin The SSIN of the patient
|
|
354
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
355
|
+
* @param patientEidCardNumber The eid card number of the patient, if available
|
|
356
|
+
* @param patientIsiCardNumber The isi card number of the patient, if available
|
|
357
357
|
*/
|
|
358
358
|
registerPatientConsentUsingPOST1(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, patientSsin: string, hubPackageId?: string, patientEidCardNumber?: string, patientIsiCardNumber?: string): Promise<PutPatientConsentResponse>;
|
|
359
359
|
/**
|
|
360
|
-
*
|
|
361
|
-
* @summary
|
|
362
|
-
* @param endpoint endpoint
|
|
363
|
-
* @param xFHCKeystoreId
|
|
364
|
-
* @param xFHCTokenId
|
|
365
|
-
* @param xFHCPassPhrase
|
|
366
|
-
* @param hcpLastName
|
|
367
|
-
* @param hcpFirstName
|
|
368
|
-
* @param hcpNihii
|
|
369
|
-
* @param hcpSsin
|
|
370
|
-
* @param hcpZip
|
|
371
|
-
* @param patientSsin
|
|
372
|
-
* @param hubPackageId
|
|
373
|
-
* @param patientEidCardNumber
|
|
374
|
-
* @param patientIsiCardNumber
|
|
375
|
-
* @param
|
|
376
|
-
* @param
|
|
360
|
+
* A therapeutic link is a relationship between a healthcare provider and a patient that allows the healthcare provider to access the patient's data in the hub system. This endpoint allows a healthcare provider to register a therapeutic link for a patient. It requires the healthcare provider's information, the patient's SSIN, and some proof of presence such the eid card number, isi card number.
|
|
361
|
+
* @summary Register a therapeutic link for a patient
|
|
362
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
363
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
364
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
365
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
366
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
367
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
368
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
369
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
370
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
371
|
+
* @param patientSsin The SSIN of the patient
|
|
372
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
373
|
+
* @param patientEidCardNumber The eid card number of the patient, if available
|
|
374
|
+
* @param patientIsiCardNumber The isi card number of the patient, if available
|
|
375
|
+
* @param therLinkType The type of the therapeutic link
|
|
376
|
+
* @param from The start date of the therapeutic link in format YYYYMMDD
|
|
377
|
+
* @param to The end date of the therapeutic link in format YYYYMMDD
|
|
377
378
|
*/
|
|
378
379
|
registerTherapeuticLinkUsingPOST(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, patientSsin: string, hubPackageId?: string, patientEidCardNumber?: string, patientIsiCardNumber?: string, from?: number, to?: number, therLinkType?: string): Promise<PutTherapeuticLinkResponse>;
|
|
379
380
|
/**
|
|
380
|
-
*
|
|
381
|
-
* @summary
|
|
382
|
-
* @param endpoint
|
|
383
|
-
* @param xFHCKeystoreId
|
|
384
|
-
* @param xFHCTokenId
|
|
385
|
-
* @param xFHCPassPhrase
|
|
386
|
-
* @param hcpLastName
|
|
387
|
-
* @param hcpFirstName
|
|
388
|
-
* @param hcpNihii
|
|
389
|
-
* @param hcpSsin
|
|
390
|
-
* @param hcpZip
|
|
391
|
-
* @param sv
|
|
392
|
-
* @param sl
|
|
393
|
-
* @param value value
|
|
394
|
-
* @param accessNihii
|
|
395
|
-
* @param accessSsin
|
|
396
|
-
* @param hubPackageId
|
|
381
|
+
* This endpoint allows a healthcare provider to revoke access rights for another healthcare provider to access a patient's data. It requires the healthcare provider's information, the identifiers of the document and the identifier of the healthcare provider whose access needs to be revoked.
|
|
382
|
+
* @summary Revoke an access right for a healthcare provider to access a patient's data
|
|
383
|
+
* @param endpoint Endpoint URL of the hub (e.g., https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, etc.)
|
|
384
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
385
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
386
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
387
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
388
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
389
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
390
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
391
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
392
|
+
* @param sv The SV part of the identifier of the transaction. Obtained from the transaction list.
|
|
393
|
+
* @param sl The SL part of the identifier of the transaction. Obtained from the transaction list.
|
|
394
|
+
* @param value The value of the transaction to manage, usually the ID of the transaction
|
|
395
|
+
* @param accessNihii The Nihii of the healthcare provider to allow/disallow access, optional
|
|
396
|
+
* @param accessSsin The SSIN of the healthcare provider to allow/disallow access, optional
|
|
397
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
397
398
|
*/
|
|
398
399
|
revokeAccessRightUsingDELETE(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, sv: string, sl: string, value: string, accessNihii?: string, accessSsin?: string, hubPackageId?: string): Promise<RevokeAccessRightResponse>;
|
|
399
400
|
/**
|
|
400
|
-
*
|
|
401
|
-
* @summary
|
|
402
|
-
* @param endpoint endpoint
|
|
403
|
-
* @param xFHCKeystoreId
|
|
404
|
-
* @param xFHCTokenId
|
|
405
|
-
* @param xFHCPassPhrase
|
|
406
|
-
* @param hcpLastName
|
|
407
|
-
* @param hcpFirstName
|
|
408
|
-
* @param hcpNihii
|
|
409
|
-
* @param hcpSsin
|
|
410
|
-
* @param hcpZip
|
|
411
|
-
* @param patientSsin
|
|
412
|
-
* @param hubPackageId
|
|
413
|
-
* @param patientEidCardNumber
|
|
414
|
-
* @param patientIsiCardNumber
|
|
401
|
+
* This endpoint allows a healthcare provider to revoke a patient's consent in the hub system. It requires the healthcare provider's information and the patient's SSIN.It also requires some kind of proof of the patient's presence, such as an eid card number or isi card number for a child.
|
|
402
|
+
* @summary Revoke a patient's consent
|
|
403
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
404
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
405
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
406
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
407
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
408
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
409
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
410
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
411
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
412
|
+
* @param patientSsin The SSIN of the patient
|
|
413
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
414
|
+
* @param patientEidCardNumber The eid card number of the patient, if available
|
|
415
|
+
* @param patientIsiCardNumber The isi card number of the patient, if available
|
|
415
416
|
*/
|
|
416
417
|
revokePatientConsentUsingDELETE(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, patientSsin: string, hubPackageId?: string, patientEidCardNumber?: string, patientIsiCardNumber?: string): Promise<RevokePatientConsentResponse>;
|
|
417
418
|
/**
|
|
418
|
-
*
|
|
419
|
-
* @summary
|
|
420
|
-
* @param endpoint endpoint
|
|
421
|
-
* @param xFHCKeystoreId
|
|
422
|
-
* @param xFHCTokenId
|
|
423
|
-
* @param xFHCPassPhrase
|
|
424
|
-
* @param hcpLastName
|
|
425
|
-
* @param hcpFirstName
|
|
426
|
-
* @param hcpNihii
|
|
427
|
-
* @param hcpSsin
|
|
428
|
-
* @param hcpZip
|
|
429
|
-
* @param patientSsin
|
|
430
|
-
* @param hubPackageId
|
|
431
|
-
* @param patientEidCardNumber
|
|
432
|
-
* @param patientIsiCardNumber
|
|
419
|
+
* This endpoint allows a healthcare provider to revoke a therapeutic link for a patient. It requires the healthcare provider's information, the patient's SSIN, and some proof of presence such the eid card number, isi card number.
|
|
420
|
+
* @summary Revoke a therapeutic link for a patient
|
|
421
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
422
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
423
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
424
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
425
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
426
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
427
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
428
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
429
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
430
|
+
* @param patientSsin The SSIN of the patient
|
|
431
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
432
|
+
* @param patientEidCardNumber The eid card number of the patient, if available
|
|
433
|
+
* @param patientIsiCardNumber The isi card number of the patient, if available
|
|
434
|
+
* @param therLinkType The type of the therapeutic link to revoke
|
|
433
435
|
*/
|
|
434
436
|
revokeTherapeuticLinkUsingDELETE(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, patientSsin: string, hubPackageId?: string, patientEidCardNumber?: string, patientIsiCardNumber?: string, therLinkType?: string): Promise<RevokeTherapeuticLinkResponse>;
|
|
435
437
|
/**
|
|
436
|
-
*
|
|
437
|
-
* @summary
|
|
438
|
-
* @param endpoint endpoint
|
|
439
|
-
* @param xFHCKeystoreId
|
|
440
|
-
* @param xFHCTokenId
|
|
441
|
-
* @param xFHCPassPhrase
|
|
442
|
-
* @param hcpLastName
|
|
443
|
-
* @param hcpFirstName
|
|
444
|
-
* @param hcpNihii
|
|
445
|
-
* @param hcpSsin
|
|
446
|
-
* @param hcpZip
|
|
447
|
-
* @param ssin
|
|
448
|
-
* @param sv
|
|
449
|
-
* @param sl
|
|
450
|
-
* @param id
|
|
451
|
-
* @param hubPackageId
|
|
452
|
-
* @param breakTheGlassReason
|
|
438
|
+
* This endpoint allows a healthcare provider to revoke a specific transaction for a patient. It requires the healthcare provider's information, the patient's SSIN, and the transaction ID.The actual deletion occurs if the healthcare provider has the right to do so, otherwise an error is triggered.
|
|
439
|
+
* @summary Delete a transaction (document, scan, ...) for a patient
|
|
440
|
+
* @param endpoint The endpoint URL of the hub (https://hub.reseausantewallon.be/HubServices/IntraHub/V3/IntraHub.asmx, https://hub.abrumet.be/hubservices/intrahub/v3/intrahub.asmx, https://services.cozo.be/IntrahubService/servicev3.asmx, https://vitalink.ehealth.fgov.be/vpmg/vitalink-gateway/IntraHubService, ...)
|
|
441
|
+
* @param xFHCKeystoreId The keystore ID for the certificate of the healthcare provider
|
|
442
|
+
* @param xFHCTokenId The token ID for the healthcare provider
|
|
443
|
+
* @param xFHCPassPhrase The passphrase for the keystore
|
|
444
|
+
* @param hcpLastName The last name of the healthcare provider
|
|
445
|
+
* @param hcpFirstName The first name of the healthcare provider
|
|
446
|
+
* @param hcpNihii The Nihii of the healthcare provider
|
|
447
|
+
* @param hcpSsin The SSIN of the healthcare provider
|
|
448
|
+
* @param hcpZip The ZIP code of the healthcare provider
|
|
449
|
+
* @param ssin The SSIN of the patient
|
|
450
|
+
* @param sv The SV part of the identifier of the transaction. Obtained from the transaction list.
|
|
451
|
+
* @param sl The SL part of the identifier of the transaction. Obtained from the transaction list.
|
|
452
|
+
* @param id The ID of the transaction to revoke
|
|
453
|
+
* @param hubPackageId The ID of the software package used to access the hub, provided by the hub. This ID is usually different for acceptance and production environments.
|
|
454
|
+
* @param breakTheGlassReason Allows a break the glass request (without a therapeutic link) by providing the reason for breaking the glass
|
|
453
455
|
*/
|
|
454
456
|
revokeTransactionUsingDELETE(endpoint: string, xFHCKeystoreId: string, xFHCTokenId: string, xFHCPassPhrase: string, hcpLastName: string, hcpFirstName: string, hcpNihii: string, hcpSsin: string, hcpZip: string, ssin: string, sv: string, sl: string, id: string, hubPackageId?: string, breakTheGlassReason?: string): Promise<string>;
|
|
455
457
|
}
|