@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250509.1 → 1.20250620.1

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.
Files changed (64) hide show
  1. package/.openapi-generator/FILES +34 -0
  2. package/api/adv-billing-api.ts +184 -0
  3. package/api/adv-care-management-api.ts +166 -0
  4. package/api/adv-claim-api.ts +204 -6
  5. package/api/adv-commission-api.ts +96 -0
  6. package/api/adv-enrollment-api.ts +88 -0
  7. package/api/adv-vbagateway-api.ts +168 -0
  8. package/api/care-cases-api.ts +609 -0
  9. package/api/claim-offset-api.ts +685 -0
  10. package/api/claim-offset-detail-api.ts +694 -0
  11. package/api/claims-api.ts +25 -25
  12. package/api/funding-reconciliations-api.ts +96 -0
  13. package/api/funding-request-claim-remove-api.ts +773 -0
  14. package/api/plans-api.ts +26 -8
  15. package/api/premium-invoices-api.ts +88 -0
  16. package/api.ts +5 -0
  17. package/docs/AdvBillingApi.md +109 -0
  18. package/docs/AdvCareManagementApi.md +63 -0
  19. package/docs/AdvClaimApi.md +117 -4
  20. package/docs/AdvCommissionApi.md +56 -0
  21. package/docs/AdvEnrollmentApi.md +53 -0
  22. package/docs/AdvVBAGatewayApi.md +64 -0
  23. package/docs/CareCasesApi.md +347 -0
  24. package/docs/ClaimOffset.md +30 -0
  25. package/docs/ClaimOffsetApi.md +354 -0
  26. package/docs/ClaimOffsetDetail.md +36 -0
  27. package/docs/ClaimOffsetDetailApi.md +357 -0
  28. package/docs/ClaimOffsetDetailListVBAResponse.md +24 -0
  29. package/docs/ClaimOffsetDetailVBAResponse.md +24 -0
  30. package/docs/ClaimOffsetListVBAResponse.md +24 -0
  31. package/docs/ClaimOffsetVBAResponse.md +24 -0
  32. package/docs/ClaimsApi.md +5 -5
  33. package/docs/CompanyData.md +2 -0
  34. package/docs/FundingReconciliationsApi.md +56 -0
  35. package/docs/FundingRequestClaimRemove.md +38 -0
  36. package/docs/FundingRequestClaimRemoveApi.md +387 -0
  37. package/docs/FundingRequestClaimRemoveListVBAResponse.md +24 -0
  38. package/docs/FundingRequestClaimRemoveVBAResponse.md +24 -0
  39. package/docs/Members.md +4 -0
  40. package/docs/PlansApi.md +7 -1
  41. package/docs/PremiumInvoicesApi.md +53 -0
  42. package/docs/ReportSeriesProcess.md +2 -0
  43. package/docs/ReportSeriesStep.md +16 -0
  44. package/docs/VBAClaimBatchCopy.md +60 -0
  45. package/docs/VBAClaimBatchCopyVBAResponse.md +24 -0
  46. package/docs/VBAVBAGatewayProcessRequest.md +32 -0
  47. package/models/claim-offset-detail-list-vbaresponse.ts +51 -0
  48. package/models/claim-offset-detail-vbaresponse.ts +51 -0
  49. package/models/claim-offset-detail.ts +78 -0
  50. package/models/claim-offset-list-vbaresponse.ts +51 -0
  51. package/models/claim-offset-vbaresponse.ts +51 -0
  52. package/models/claim-offset.ts +60 -0
  53. package/models/company-data.ts +6 -0
  54. package/models/funding-request-claim-remove-list-vbaresponse.ts +51 -0
  55. package/models/funding-request-claim-remove-vbaresponse.ts +51 -0
  56. package/models/funding-request-claim-remove.ts +84 -0
  57. package/models/index.ts +12 -0
  58. package/models/members.ts +12 -0
  59. package/models/report-series-process.ts +6 -0
  60. package/models/report-series-step.ts +48 -0
  61. package/models/vbaclaim-batch-copy-vbaresponse.ts +51 -0
  62. package/models/vbaclaim-batch-copy.ts +150 -0
  63. package/models/vbavbagateway-process-request.ts +66 -0
  64. package/package.json +1 -1
@@ -0,0 +1,357 @@
1
+ # ClaimOffsetDetailApi
2
+
3
+ All URIs are relative to *https://vbapi.vbasoftware.com/vbasoftware*
4
+
5
+ |Method | HTTP request | Description|
6
+ |------------- | ------------- | -------------|
7
+ |[**createClaimOffsetDetail**](#createclaimoffsetdetail) | **POST** /claim-offset-details | Create ClaimOffsetDetail|
8
+ |[**deleteClaimOffsetDetail**](#deleteclaimoffsetdetail) | **DELETE** /claim-offset-details/{ClaimOffsetDetail_Key} | Delete ClaimOffsetDetail|
9
+ |[**getClaimOffsetDetail**](#getclaimoffsetdetail) | **GET** /claim-offset-details/{ClaimOffsetDetail_Key} | Get ClaimOffsetDetail|
10
+ |[**listClaimOffsetDetail**](#listclaimoffsetdetail) | **GET** /claim-offset-details | List ClaimOffsetDetail|
11
+ |[**updateBatchClaimOffsetDetail**](#updatebatchclaimoffsetdetail) | **PUT** /claim-offset-details-batch | Create or Update Batch ClaimOffsetDetail|
12
+ |[**updateClaimOffsetDetail**](#updateclaimoffsetdetail) | **PUT** /claim-offset-details/{ClaimOffsetDetail_Key} | Update ClaimOffsetDetail|
13
+
14
+ # **createClaimOffsetDetail**
15
+ > ClaimOffsetDetailVBAResponse createClaimOffsetDetail(claimOffsetDetail)
16
+
17
+ Creates a new ClaimOffsetDetail
18
+
19
+ ### Example
20
+
21
+ ```typescript
22
+ import {
23
+ ClaimOffsetDetailApi,
24
+ Configuration,
25
+ ClaimOffsetDetail
26
+ } from './api';
27
+
28
+ const configuration = new Configuration();
29
+ const apiInstance = new ClaimOffsetDetailApi(configuration);
30
+
31
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
32
+ let claimOffsetDetail: ClaimOffsetDetail; //
33
+
34
+ const { status, data } = await apiInstance.createClaimOffsetDetail(
35
+ vbasoftwareDatabase,
36
+ claimOffsetDetail
37
+ );
38
+ ```
39
+
40
+ ### Parameters
41
+
42
+ |Name | Type | Description | Notes|
43
+ |------------- | ------------- | ------------- | -------------|
44
+ | **claimOffsetDetail** | **ClaimOffsetDetail**| | |
45
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
46
+
47
+
48
+ ### Return type
49
+
50
+ **ClaimOffsetDetailVBAResponse**
51
+
52
+ ### Authorization
53
+
54
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
55
+
56
+ ### HTTP request headers
57
+
58
+ - **Content-Type**: application/json, text/json, application/*+json
59
+ - **Accept**: text/plain, application/json, text/json
60
+
61
+
62
+ ### HTTP response details
63
+ | Status code | Description | Response headers |
64
+ |-------------|-------------|------------------|
65
+ |**200** | Success | - |
66
+ |**401** | Unauthorized | - |
67
+
68
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
69
+
70
+ # **deleteClaimOffsetDetail**
71
+ > deleteClaimOffsetDetail()
72
+
73
+ Deletes an ClaimOffsetDetail
74
+
75
+ ### Example
76
+
77
+ ```typescript
78
+ import {
79
+ ClaimOffsetDetailApi,
80
+ Configuration
81
+ } from './api';
82
+
83
+ const configuration = new Configuration();
84
+ const apiInstance = new ClaimOffsetDetailApi(configuration);
85
+
86
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
87
+ let claimOffsetDetailKey: number; //ClaimOffsetDetail Key (default to undefined)
88
+
89
+ const { status, data } = await apiInstance.deleteClaimOffsetDetail(
90
+ vbasoftwareDatabase,
91
+ claimOffsetDetailKey
92
+ );
93
+ ```
94
+
95
+ ### Parameters
96
+
97
+ |Name | Type | Description | Notes|
98
+ |------------- | ------------- | ------------- | -------------|
99
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
100
+ | **claimOffsetDetailKey** | [**number**] | ClaimOffsetDetail Key | defaults to undefined|
101
+
102
+
103
+ ### Return type
104
+
105
+ void (empty response body)
106
+
107
+ ### Authorization
108
+
109
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
110
+
111
+ ### HTTP request headers
112
+
113
+ - **Content-Type**: Not defined
114
+ - **Accept**: Not defined
115
+
116
+
117
+ ### HTTP response details
118
+ | Status code | Description | Response headers |
119
+ |-------------|-------------|------------------|
120
+ |**204** | Success | - |
121
+ |**401** | Unauthorized | - |
122
+
123
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
124
+
125
+ # **getClaimOffsetDetail**
126
+ > ClaimOffsetDetailVBAResponse getClaimOffsetDetail()
127
+
128
+ Gets ClaimOffsetDetail
129
+
130
+ ### Example
131
+
132
+ ```typescript
133
+ import {
134
+ ClaimOffsetDetailApi,
135
+ Configuration
136
+ } from './api';
137
+
138
+ const configuration = new Configuration();
139
+ const apiInstance = new ClaimOffsetDetailApi(configuration);
140
+
141
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
142
+ let claimOffsetDetailKey: number; //ClaimOffsetDetail Key (default to undefined)
143
+
144
+ const { status, data } = await apiInstance.getClaimOffsetDetail(
145
+ vbasoftwareDatabase,
146
+ claimOffsetDetailKey
147
+ );
148
+ ```
149
+
150
+ ### Parameters
151
+
152
+ |Name | Type | Description | Notes|
153
+ |------------- | ------------- | ------------- | -------------|
154
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
155
+ | **claimOffsetDetailKey** | [**number**] | ClaimOffsetDetail Key | defaults to undefined|
156
+
157
+
158
+ ### Return type
159
+
160
+ **ClaimOffsetDetailVBAResponse**
161
+
162
+ ### Authorization
163
+
164
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
165
+
166
+ ### HTTP request headers
167
+
168
+ - **Content-Type**: Not defined
169
+ - **Accept**: text/plain, application/json, text/json
170
+
171
+
172
+ ### HTTP response details
173
+ | Status code | Description | Response headers |
174
+ |-------------|-------------|------------------|
175
+ |**200** | Success | - |
176
+ |**401** | Unauthorized | - |
177
+
178
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
179
+
180
+ # **listClaimOffsetDetail**
181
+ > ClaimOffsetDetailListVBAResponse listClaimOffsetDetail()
182
+
183
+ Lists all ClaimOffsetDetail with optional ClaimOffset_Key query parameter to filter results.
184
+
185
+ ### Example
186
+
187
+ ```typescript
188
+ import {
189
+ ClaimOffsetDetailApi,
190
+ Configuration
191
+ } from './api';
192
+
193
+ const configuration = new Configuration();
194
+ const apiInstance = new ClaimOffsetDetailApi(configuration);
195
+
196
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
197
+ let claimOffsetKey: number; //ClaimOffset Key (optional) (default to undefined)
198
+ let sortBy: string; //Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending. (optional) (default to undefined)
199
+ let page: number; //Page (optional) (default to 1)
200
+ let pageSize: number; //Page Size (optional) (default to 100)
201
+
202
+ const { status, data } = await apiInstance.listClaimOffsetDetail(
203
+ vbasoftwareDatabase,
204
+ claimOffsetKey,
205
+ sortBy,
206
+ page,
207
+ pageSize
208
+ );
209
+ ```
210
+
211
+ ### Parameters
212
+
213
+ |Name | Type | Description | Notes|
214
+ |------------- | ------------- | ------------- | -------------|
215
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
216
+ | **claimOffsetKey** | [**number**] | ClaimOffset Key | (optional) defaults to undefined|
217
+ | **sortBy** | [**string**] | Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending. | (optional) defaults to undefined|
218
+ | **page** | [**number**] | Page | (optional) defaults to 1|
219
+ | **pageSize** | [**number**] | Page Size | (optional) defaults to 100|
220
+
221
+
222
+ ### Return type
223
+
224
+ **ClaimOffsetDetailListVBAResponse**
225
+
226
+ ### Authorization
227
+
228
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
229
+
230
+ ### HTTP request headers
231
+
232
+ - **Content-Type**: Not defined
233
+ - **Accept**: text/plain, application/json, text/json
234
+
235
+
236
+ ### HTTP response details
237
+ | Status code | Description | Response headers |
238
+ |-------------|-------------|------------------|
239
+ |**200** | Success | - |
240
+ |**401** | Unauthorized | - |
241
+
242
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
243
+
244
+ # **updateBatchClaimOffsetDetail**
245
+ > MultiCodeResponseListVBAResponse updateBatchClaimOffsetDetail(claimOffsetDetail)
246
+
247
+ Create or Update multiple ClaimOffsetDetail at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
248
+
249
+ ### Example
250
+
251
+ ```typescript
252
+ import {
253
+ ClaimOffsetDetailApi,
254
+ Configuration
255
+ } from './api';
256
+
257
+ const configuration = new Configuration();
258
+ const apiInstance = new ClaimOffsetDetailApi(configuration);
259
+
260
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
261
+ let claimOffsetDetail: Array<ClaimOffsetDetail>; //
262
+
263
+ const { status, data } = await apiInstance.updateBatchClaimOffsetDetail(
264
+ vbasoftwareDatabase,
265
+ claimOffsetDetail
266
+ );
267
+ ```
268
+
269
+ ### Parameters
270
+
271
+ |Name | Type | Description | Notes|
272
+ |------------- | ------------- | ------------- | -------------|
273
+ | **claimOffsetDetail** | **Array<ClaimOffsetDetail>**| | |
274
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
275
+
276
+
277
+ ### Return type
278
+
279
+ **MultiCodeResponseListVBAResponse**
280
+
281
+ ### Authorization
282
+
283
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
284
+
285
+ ### HTTP request headers
286
+
287
+ - **Content-Type**: application/json, text/json, application/*+json
288
+ - **Accept**: text/plain, application/json, text/json
289
+
290
+
291
+ ### HTTP response details
292
+ | Status code | Description | Response headers |
293
+ |-------------|-------------|------------------|
294
+ |**207** | Success | - |
295
+ |**401** | Unauthorized | - |
296
+
297
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
298
+
299
+ # **updateClaimOffsetDetail**
300
+ > ClaimOffsetDetailVBAResponse updateClaimOffsetDetail(claimOffsetDetail)
301
+
302
+ Updates a specific ClaimOffsetDetail.
303
+
304
+ ### Example
305
+
306
+ ```typescript
307
+ import {
308
+ ClaimOffsetDetailApi,
309
+ Configuration,
310
+ ClaimOffsetDetail
311
+ } from './api';
312
+
313
+ const configuration = new Configuration();
314
+ const apiInstance = new ClaimOffsetDetailApi(configuration);
315
+
316
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
317
+ let claimOffsetDetailKey: number; //ClaimOffsetDetail Key (default to undefined)
318
+ let claimOffsetDetail: ClaimOffsetDetail; //
319
+
320
+ const { status, data } = await apiInstance.updateClaimOffsetDetail(
321
+ vbasoftwareDatabase,
322
+ claimOffsetDetailKey,
323
+ claimOffsetDetail
324
+ );
325
+ ```
326
+
327
+ ### Parameters
328
+
329
+ |Name | Type | Description | Notes|
330
+ |------------- | ------------- | ------------- | -------------|
331
+ | **claimOffsetDetail** | **ClaimOffsetDetail**| | |
332
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
333
+ | **claimOffsetDetailKey** | [**number**] | ClaimOffsetDetail Key | defaults to undefined|
334
+
335
+
336
+ ### Return type
337
+
338
+ **ClaimOffsetDetailVBAResponse**
339
+
340
+ ### Authorization
341
+
342
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
343
+
344
+ ### HTTP request headers
345
+
346
+ - **Content-Type**: application/json, text/json, application/*+json
347
+ - **Accept**: text/plain, application/json, text/json
348
+
349
+
350
+ ### HTTP response details
351
+ | Status code | Description | Response headers |
352
+ |-------------|-------------|------------------|
353
+ |**200** | Success | - |
354
+ |**401** | Unauthorized | - |
355
+
356
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
357
+
@@ -0,0 +1,24 @@
1
+ # ClaimOffsetDetailListVBAResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **data** | [**Array&lt;ClaimOffsetDetail&gt;**](ClaimOffsetDetail.md) | | [optional] [default to undefined]
9
+ **error** | [**VBAProblemDetails**](VBAProblemDetails.md) | | [optional] [default to undefined]
10
+ **debug** | [**Debug**](Debug.md) | | [optional] [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { ClaimOffsetDetailListVBAResponse } from './api';
16
+
17
+ const instance: ClaimOffsetDetailListVBAResponse = {
18
+ data,
19
+ error,
20
+ debug,
21
+ };
22
+ ```
23
+
24
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,24 @@
1
+ # ClaimOffsetDetailVBAResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **data** | [**ClaimOffsetDetail**](ClaimOffsetDetail.md) | | [optional] [default to undefined]
9
+ **error** | [**VBAProblemDetails**](VBAProblemDetails.md) | | [optional] [default to undefined]
10
+ **debug** | [**Debug**](Debug.md) | | [optional] [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { ClaimOffsetDetailVBAResponse } from './api';
16
+
17
+ const instance: ClaimOffsetDetailVBAResponse = {
18
+ data,
19
+ error,
20
+ debug,
21
+ };
22
+ ```
23
+
24
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,24 @@
1
+ # ClaimOffsetListVBAResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **data** | [**Array&lt;ClaimOffset&gt;**](ClaimOffset.md) | | [optional] [default to undefined]
9
+ **error** | [**VBAProblemDetails**](VBAProblemDetails.md) | | [optional] [default to undefined]
10
+ **debug** | [**Debug**](Debug.md) | | [optional] [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { ClaimOffsetListVBAResponse } from './api';
16
+
17
+ const instance: ClaimOffsetListVBAResponse = {
18
+ data,
19
+ error,
20
+ debug,
21
+ };
22
+ ```
23
+
24
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,24 @@
1
+ # ClaimOffsetVBAResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **data** | [**ClaimOffset**](ClaimOffset.md) | | [optional] [default to undefined]
9
+ **error** | [**VBAProblemDetails**](VBAProblemDetails.md) | | [optional] [default to undefined]
10
+ **debug** | [**Debug**](Debug.md) | | [optional] [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { ClaimOffsetVBAResponse } from './api';
16
+
17
+ const instance: ClaimOffsetVBAResponse = {
18
+ data,
19
+ error,
20
+ debug,
21
+ };
22
+ ```
23
+
24
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/docs/ClaimsApi.md CHANGED
@@ -14,7 +14,7 @@ All URIs are relative to *https://vbapi.vbasoftware.com/vbasoftware*
14
14
  # **createClaim**
15
15
  > ClaimVBAResponse createClaim(claim)
16
16
 
17
- Creates a new Claim
17
+ WARNING: The underlying Claim table and this API are used for claims that have already passed through the adjudication process and have been paid. Note: If you are looking for Claims that have not yet been processed through adjudication, use the ClaimBatches, ClaimBatch and ClaimBatchDetail APIs.
18
18
 
19
19
  ### Example
20
20
 
@@ -70,7 +70,7 @@ const { status, data } = await apiInstance.createClaim(
70
70
  # **deleteClaim**
71
71
  > deleteClaim()
72
72
 
73
- Deletes an Claim
73
+ WARNING: The underlying Claim table and this API are used for claims that have already passed through the adjudication process and have been paid. Note: If you are looking for Claims that have not yet been processed through adjudication, use the ClaimBatches, ClaimBatch and ClaimBatchDetail APIs.
74
74
 
75
75
  ### Example
76
76
 
@@ -125,7 +125,7 @@ void (empty response body)
125
125
  # **getClaim**
126
126
  > ClaimVBAResponse getClaim()
127
127
 
128
- Gets Claim
128
+ WARNING: The underlying Claim table and this API are used for claims that have already passed through the adjudication process and have been paid. Note: If you are looking for Claims that have not yet been processed through adjudication, use the ClaimBatches, ClaimBatch and ClaimBatchDetail APIs.
129
129
 
130
130
  ### Example
131
131
 
@@ -238,7 +238,7 @@ const { status, data } = await apiInstance.listClaimTimeline(
238
238
  # **updateBatchClaim**
239
239
  > MultiCodeResponseListVBAResponse updateBatchClaim(claim)
240
240
 
241
- Create or Update multiple Claim at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
241
+ WARNING: The underlying Claim table and this API are used for claims that have already passed through the adjudication process and have been paid. Create or Update multiple Claim at once. If the entity exists, it will be updated. If the entity does not exist, it will be created. Note: If you are looking for Claims that have not yet been processed through adjudication, use the ClaimBatches, ClaimBatch and ClaimBatchDetail APIs.
242
242
 
243
243
  ### Example
244
244
 
@@ -293,7 +293,7 @@ const { status, data } = await apiInstance.updateBatchClaim(
293
293
  # **updateClaim**
294
294
  > ClaimVBAResponse updateClaim(claim)
295
295
 
296
- Updates a specific Claim.
296
+ WARNING: The underlying Claim table and this API are used for claims that have already passed through the adjudication process and have been paid. Note: If you are looking for Claims that have not yet been processed through adjudication, use the ClaimBatches, ClaimBatch and ClaimBatchDetail APIs.
297
297
 
298
298
  ### Example
299
299
 
@@ -450,6 +450,7 @@ Name | Type | Description | Notes
450
450
  **remove_Sys_Gen_Billing_Adj_On_Delete** | **boolean** | | [optional] [default to undefined]
451
451
  **allow_CallTracking_Provider_ID_Edit** | **boolean** | | [optional] [default to undefined]
452
452
  **allow_Candidate_Below_Account_Balance** | **boolean** | | [optional] [default to undefined]
453
+ **enable_VBAssist** | **boolean** | | [optional] [default to undefined]
453
454
 
454
455
  ## Example
455
456
 
@@ -902,6 +903,7 @@ const instance: CompanyData = {
902
903
  remove_Sys_Gen_Billing_Adj_On_Delete,
903
904
  allow_CallTracking_Provider_ID_Edit,
904
905
  allow_Candidate_Below_Account_Balance,
906
+ enable_VBAssist,
905
907
  };
906
908
  ```
907
909
 
@@ -12,6 +12,7 @@ All URIs are relative to *https://vbapi.vbasoftware.com/vbasoftware*
12
12
  |[**reconcileFunds**](#reconcilefunds) | **POST** /funding-reconciliation-reconcile-funds | Reconcile Funds|
13
13
  |[**updateBatchFundingReconcile**](#updatebatchfundingreconcile) | **PUT** /funding-reconciliations-batch | Create or Update Batch FundingReconcile|
14
14
  |[**updateFundingReconcile**](#updatefundingreconcile) | **PUT** /funding-reconciliations/{reconcileKey} | Update FundingReconcile|
15
+ |[**voidReconcile**](#voidreconcile) | **POST** /void-reconciliation/{reconcileKey} | Void Reconciliation|
15
16
 
16
17
  # **addReconciliation**
17
18
  > FundingReconcileVBAResponse addReconciliation(fundingStatement)
@@ -466,3 +467,58 @@ const { status, data } = await apiInstance.updateFundingReconcile(
466
467
 
467
468
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
468
469
 
470
+ # **voidReconcile**
471
+ > FundingReconcileVBAResponse voidReconcile()
472
+
473
+ Void the selected Funding Reconciliation.
474
+
475
+ ### Example
476
+
477
+ ```typescript
478
+ import {
479
+ FundingReconciliationsApi,
480
+ Configuration
481
+ } from './api';
482
+
483
+ const configuration = new Configuration();
484
+ const apiInstance = new FundingReconciliationsApi(configuration);
485
+
486
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
487
+ let reconcileKey: number; //Reconcile Key (default to undefined)
488
+
489
+ const { status, data } = await apiInstance.voidReconcile(
490
+ vbasoftwareDatabase,
491
+ reconcileKey
492
+ );
493
+ ```
494
+
495
+ ### Parameters
496
+
497
+ |Name | Type | Description | Notes|
498
+ |------------- | ------------- | ------------- | -------------|
499
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
500
+ | **reconcileKey** | [**number**] | Reconcile Key | defaults to undefined|
501
+
502
+
503
+ ### Return type
504
+
505
+ **FundingReconcileVBAResponse**
506
+
507
+ ### Authorization
508
+
509
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
510
+
511
+ ### HTTP request headers
512
+
513
+ - **Content-Type**: Not defined
514
+ - **Accept**: text/plain, application/json, text/json
515
+
516
+
517
+ ### HTTP response details
518
+ | Status code | Description | Response headers |
519
+ |-------------|-------------|------------------|
520
+ |**200** | Success | - |
521
+ |**401** | Unauthorized | - |
522
+
523
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
524
+
@@ -0,0 +1,38 @@
1
+ # FundingRequestClaimRemove
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **batch_Number** | **number** | Note: This field is marked as NOT NULL in the database and therefore required by the API. | [default to undefined]
9
+ **batch_Claim** | **number** | Note: This field is marked as NOT NULL in the database and therefore required by the API. | [default to undefined]
10
+ **request_Key** | **number** | Note: This field is marked as NOT NULL in the database and therefore required by the API. | [default to undefined]
11
+ **entry_Date** | **string** | Date record was first added to the system | [optional] [default to undefined]
12
+ **entry_User** | **string** | User that first added the record to the system | [optional] [default to undefined]
13
+ **remove_Date** | **string** | | [optional] [default to undefined]
14
+ **remove_Reason** | **string** | | [optional] [default to undefined]
15
+ **remove_User** | **string** | | [optional] [default to undefined]
16
+ **update_Date** | **string** | Date the record was last updated in the system | [optional] [default to undefined]
17
+ **update_User** | **string** | User that last updated the record in the system | [optional] [default to undefined]
18
+
19
+ ## Example
20
+
21
+ ```typescript
22
+ import { FundingRequestClaimRemove } from './api';
23
+
24
+ const instance: FundingRequestClaimRemove = {
25
+ batch_Number,
26
+ batch_Claim,
27
+ request_Key,
28
+ entry_Date,
29
+ entry_User,
30
+ remove_Date,
31
+ remove_Reason,
32
+ remove_User,
33
+ update_Date,
34
+ update_User,
35
+ };
36
+ ```
37
+
38
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)