-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathApiClientExtensions.cs
More file actions
1398 lines (1313 loc) · 75.7 KB
/
ApiClientExtensions.cs
File metadata and controls
1398 lines (1313 loc) · 75.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Acumatica.RESTClient.Api;
using Acumatica.RESTClient.Client;
using Acumatica.RESTClient.ContractBasedApi.Model;
using static Acumatica.RESTClient.Auxiliary.ApiClientHelpers;
using static Acumatica.RESTClient.ContractBasedApi.ApiClientExtensions;
using static Acumatica.RESTClient.ContractBasedApi.EntityStructureHelper;
namespace Acumatica.RESTClient.ContractBasedApi
{
public static class ApiClientExtensions
{
#region Public Methods
#region Action
/// <summary>
/// Performs an action in the system.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="action">The action that should be executed.</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <typeparamref name="EntityType"/></param>
/// <param name="businessDate"></param>
/// <param name="branch"></param>
/// <returns>
/// Returns value of Location header. The value can be used to
/// query the status of running operation using <see cref="GetProcessStatus(ApiClient, string)"/>
/// </returns>
public static string InvokeAction<EntityType>(
this ApiClient client,
EntityAction<EntityType> action,
string? endpointPath = null,
DateTime? businessDate = null,
string? branch = null)
where EntityType : Entity, ITopLevelEntity, new()
{
return InvokeActionAsync(client, action, endpointPath, businessDate, branch).GetAwaiter().GetResult();
}
/// <summary>
/// Performs an action in the system.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="action">The record to which the action should be applied and the parameters of the action.</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <typeparamref name="EntityType"/></param>
/// <param name="businessDate"></param>
/// <param name="branch"></param>
/// <param name="cancellationToken"></param>
/// <returns>
/// Returns value of Location header. The value can be used to
/// query the status of running operation using <see cref="GetProcessStatusAsync(ApiClient, string, CancellationToken)"/>
/// </returns>
public static async Task<string> InvokeActionAsync<EntityType>(
this ApiClient client,
EntityAction<EntityType> action,
string? endpointPath = null,
DateTime? businessDate = null,
string? branch = null,
CancellationToken cancellationToken = default)
where EntityType : Entity, ITopLevelEntity, new()
{
if (action == null)
ThrowMissingParameter(nameof(InvokeActionAsync), nameof(action));
if (endpointPath == null)
endpointPath = GetEndpointPath<EntityType>();
HttpResponseMessage response = await client.CallApiAsync(
resourcePath: $"{endpointPath}/{GetEntityName(typeof(EntityType))}/{action!.GetType().Name}",
method: HttpMethod.Post,
body: action,
acceptType: HeaderContentType.Json,
contentType: HeaderContentType.Json,
customHeaders: ComposePutHeaders(PutMethod.Any, businessDate, branch),
cancellationToken: cancellationToken
).ConfigureAwait(false);
await VerifyResponseAsync(response, nameof(InvokeActionAsync)).ConfigureAwait(false);
return response.Headers.GetValues("Location").First();
}
/// <summary>
/// Queries the system with the specified <paramref name="millisecondsInterval"/>
/// to get status of a running operation
/// untill the operation status is Completed.
/// </summary>
/// <param name="client"></param>
/// <param name="location">
/// Value of the Location header returned
/// from <see cref="InvokeActionAsync{EntityType}(ApiClient, EntityAction{EntityType}, string?, DateTime?, string?, CancellationToken)"/>
/// </param>
/// <param name="millisecondsInterval">
/// Time that the system waits between querying for the operation status in milliseconds.
/// Default value is <c>1000</c>.
/// </param>
/// <param name="secondsTimeout">
/// Time that the system waits for the process completion.
/// Default value is <c>360</c>.
/// </param>
/// <param name="cancellationToken"></param>
/// <exception cref="InvalidOperationException">
/// Throws the the exception if the operation finishes with a status code not indicating
/// successful completion.
/// </exception>
/// <exception cref="TimeoutException">
/// Throws the the exception if the operation did not finish in specified timeout interval.
/// </exception>
public static async Task WaitActionCompletionAsync(
this ApiClient client,
string location,
int millisecondsInterval = 1000,
int secondsTimeout = 360,
CancellationToken cancellationToken = default)
{
while (true)
{
var startTime = DateTime.Now;
var processResult = await GetProcessStatusAsync(client, location, cancellationToken).ConfigureAwait(false);
switch (processResult)
{
case HttpStatusCode.NotFound:
throw new ApiException(404, "Process Not Found. Probably it has been started in another session.");
case HttpStatusCode.NoContent:
return;
case HttpStatusCode.Accepted:
if ((startTime - DateTime.Now).Seconds > secondsTimeout)
{
throw new TimeoutException();
}
else
{
await Task.Delay(millisecondsInterval).ConfigureAwait(false);
continue;
}
default:
throw new InvalidOperationException($"Process status: {processResult}");
}
}
}
/// <summary>
/// Queries the system with the specified <paramref name="millisecondsInterval"/>
/// to get status of a running operation
/// untill the operation status is Completed.
/// </summary>
/// <param name="client"></param>
/// <param name="location">
/// Value of the Location header returned
/// from <see cref=" InvokeAction{EntityType}(ApiClient, EntityAction{EntityType}, string?, DateTime?, string?)"/> or
/// <see cref="InvokeActionAsync{EntityType}(ApiClient, EntityAction{EntityType}, string?, DateTime?, string?, CancellationToken)"/>
/// </param>
/// <param name="millisecondsInterval">
/// Time that the system waits between querying for the operation status in milliseconds.
/// Default value is <c>1000</c>.
/// </param>
/// <exception cref="InvalidOperationException">
/// Throws the the exception if the operation finishes with a status code not indicating
/// successful completion.
/// </exception>
public static void WaitActionCompletion(this ApiClient client, string location, int millisecondsInterval = 1000)
{
WaitActionCompletionAsync(client, location, millisecondsInterval).GetAwaiter().GetResult();
}
/// <summary>
/// Gets the status of an operation started by invoking an action.
/// </summary>
/// <param name="client"></param>
/// <param name="location">
/// Value of the Location header returned
/// from <see cref="InvokeAction{EntityType}(ApiClient, EntityAction{EntityType}, string?, DateTime?, string?)"/> or
/// <see cref="InvokeActionAsync{EntityType}(ApiClient, EntityAction{EntityType}, string?, DateTime?, string?, CancellationToken)"/>
/// </param>
/// <returns>Returns HTTP status code of the running operation.</returns>
public static HttpStatusCode GetProcessStatus(this ApiClient client, string location)
{
return GetProcessStatusAsync(client, location).GetAwaiter().GetResult();
}
/// <summary>
/// Gets the status of an operation started by invoking an action.
/// </summary>
/// <param name="client"></param>
/// <param name="location">
/// Value of the Location header returned
/// from <see cref="InvokeAction{EntityType}(ApiClient, EntityAction{EntityType}, string?, DateTime?, string?)"/> or
/// <see cref="InvokeActionAsync{EntityType}(ApiClient, EntityAction{EntityType}, string?, DateTime?, string?, CancellationToken)"/>
/// </param>
/// <param name="cancellationToken"></param>
/// <returns>Returns HTTP status code of the running operation.</returns>
public static async Task<HttpStatusCode> GetProcessStatusAsync(this ApiClient client, string location, CancellationToken cancellationToken = default)
{
if (location == null)
ThrowMissingParameter(nameof(GetProcessStatusAsync), nameof(location));
var parsedLocation = UrlParser.ParseActionLocation(location!);
if (parsedLocation.ActionName == null)
return HttpStatusCode.NoContent;
var result = await GetProcessResultAsync(
client: client,
resourcePath: $"/entity/{parsedLocation.EndpointName}/{parsedLocation.EndpointVersion}/{parsedLocation.EntityName}/{parsedLocation.ActionName}/{parsedLocation.Status}/{parsedLocation.ID}",
cancellationToken: cancellationToken).ConfigureAwait(false);
return result.StatusCode;
}
#endregion
#region Report
/// <summary>
/// Starts report generation in the system.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="report">The report to generate.</param>
/// <param name="format">Format of the report file to generate</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <paramref name="report"/></param>
/// <param name="businessDate"></param>
/// <param name="branch"></param>
/// <returns>Task of void</returns>
public static string StartReport(
this ApiClient client,
IReport report,
ReportFormat format = ReportFormat.PDF,
string? endpointPath = null,
DateTime? businessDate = null,
string? branch = null)
{
return StartReportAsync(client, report, format, endpointPath, businessDate, branch).GetAwaiter().GetResult();
}
/// <summary>
/// Starts report generation in the system.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="report">The report to generate.</param>
/// <param name="format">Format of the report file to generate</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <paramref name="report"/></param>
/// <param name="businessDate"></param>
/// <param name="branch"></param>
/// <param name="cancellationToken"></param>
/// <returns>Task of void</returns>
public static async Task<string> StartReportAsync(
this ApiClient client,
IReport report,
ReportFormat format = ReportFormat.PDF,
string? endpointPath = null,
DateTime? businessDate = null,
string? branch = null,
CancellationToken cancellationToken = default)
{
if (report == null)
ThrowMissingParameter(nameof(StartReportAsync), nameof(report));
if (endpointPath == null)
endpointPath = GetEndpointPath(report!);
HttpResponseMessage response = await client.CallApiAsync(
resourcePath: $"{endpointPath}/{report!.GetType().Name}",
method: HttpMethod.Post,
body: report,
acceptType: (HeaderContentType)format,
contentType: HeaderContentType.Json,
customHeaders: ComposePutHeaders(PutMethod.Any, businessDate, branch),
cancellationToken: cancellationToken
).ConfigureAwait(false);
await VerifyResponseAsync(response, nameof(StartReportAsync)).ConfigureAwait(false);
return response.Headers.GetValues("Location").First();
}
/// <summary>
/// Queries the system with the specified <paramref name="millisecondsInterval"/>
/// to get status of a running operation
/// untill the operation status is Completed.
/// </summary>
/// <param name="client"></param>
/// <param name="location">
/// Value of the Location header returned
/// from <see cref="StartReportAsync(ApiClient, IReport, ReportFormat, string?, DateTime?, string?, CancellationToken)"/>
/// </param>
/// <param name="millisecondsInterval">
/// Time that the system waits between querying for the operation status in milliseconds.
/// Default value is <c>1000</c>.
/// </param>
/// <param name="secondsTimeout">
/// Time that the system waits for the process completion.
/// Default value is <c>360</c>.
/// </param>
/// <param name="cancellationToken"></param>
/// <exception cref="InvalidOperationException">
/// Throws the the exception if the operation finishes with a status code not indicating
/// successful completion.
/// </exception>
/// <exception cref="TimeoutException">
/// Throws the the exception if the operation did not finish in specified timeout interval.
/// </exception>
public static async Task<Stream> GetReportAsync(
this ApiClient client,
string location,
int millisecondsInterval = 1000,
int secondsTimeout = 360,
CancellationToken cancellationToken = default)
{
var parsedLocation = UrlParser.ParseReportLocation(location);
while (true)
{
var startTime = DateTime.Now;
var processResult = await GetProcessResultAsync(
client,
resourcePath: $"/entity/{parsedLocation.EndpointName}/{parsedLocation.EndpointVersion}/{parsedLocation.EntityName}/report/{parsedLocation.Locale}/{parsedLocation.Format}/{parsedLocation.ID}",
cancellationToken).ConfigureAwait(false);
switch (processResult.StatusCode)
{
case HttpStatusCode.NotFound:
throw new ApiException(404, "Process Not Found. Probably it has been started in another session.");
case HttpStatusCode.OK:
{
return await processResult.Content.ReadAsStreamAsync().ConfigureAwait(false);
}
case HttpStatusCode.Accepted:
if ((startTime - DateTime.Now).Seconds > secondsTimeout)
{
throw new TimeoutException();
}
else
{
await Task.Delay(millisecondsInterval).ConfigureAwait(false);
continue;
}
default:
throw new InvalidOperationException($"Process status: {processResult}");
}
}
}
/// <summary>
/// Queries the system with the specified <paramref name="millisecondsInterval"/>
/// to get status of a running operation
/// untill the operation status is Completed.
/// </summary>
/// <param name="client"></param>
/// <param name="location">
/// Value of the Location header returned
/// from <see cref="StartReport(ApiClient, IReport, ReportFormat, string?, DateTime?, string?)"/>
/// </param>
/// <param name="millisecondsInterval">
/// Time that the system waits between querying for the operation status in milliseconds.
/// Default value is <c>1000</c>.
/// </param>
/// <param name="secondsTimeout">
/// Time that the system waits for the process completion.
/// Default value is <c>360</c>.
/// </param>
/// <exception cref="InvalidOperationException">
/// Throws the the exception if the operation finishes with a status code not indicating
/// successful completion.
/// </exception>
/// <exception cref="TimeoutException">
/// Throws the the exception if the operation did not finish in specified timeout interval.
/// </exception>
public static Stream GetReport(
this ApiClient client,
string location,
int millisecondsInterval = 1000,
int secondsTimeout = 360)
{
return GetReportAsync(client, location, millisecondsInterval, secondsTimeout).GetAwaiter().GetResult();
}
#endregion
#region Put
/// <summary>
/// Put method that can be used to determine operation Api Call executes.
/// Supported starting from Acumatica ERP version 2019 R2.
/// </summary>
public enum PutMethod
{
Insert,
Update,
Any
}
/// <summary>
/// Creates a record or updates an existing record if <paramref name="entity"/> can be mathed to an existing record by
/// <c>id</c> field value or key fields values.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="entity">The record to be passed to the system.</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <paramref name="entity"/></param>
/// <param name="select">The fields of the entity to be returned from the system. (optional)</param>
/// <param name="filter">The conditions that determine which records should be selected from the system. (optional)</param>
/// <param name="expand">The linked and detail entities that should be expanded. (optional)</param>
/// <param name="custom">The fields that are not defined in the contract of the endpoint to be returned from the system. (optional)</param>
/// <param name="method">
/// Optional. Used to determine whether the system should <see cref="PutMethod.Insert"/> a new record
/// or <see cref="PutMethod.Update"/> an existing record.
/// If not specifified the default behavior is <see cref="PutMethod.Any">Any/Upsert</see>.
/// </param>
/// <param name="businessDate">
/// Optional. Specifies the new business date. If you omit this header,
/// the current date is used as the business date.
/// </param>
/// <param name="branch">
/// Optional. Specifies the new current branch.
/// The branch should be specified as a branch name.
/// If you omit this header, the branch that you specified when signing in is used as the current branch.
/// </param>
/// <returns>Object of <typeparamref name="EntityType"/> type.</returns>
public static EntityType Put<EntityType>(
this ApiClient client, EntityType entity,
string? endpointPath = null,
string? select = null, string? filter = null, string? expand = null, string? custom = null,
PutMethod method = PutMethod.Any, DateTime? businessDate = null, string? branch = null)
where EntityType : Entity, ITopLevelEntity
{
return PutAsync(client, entity, endpointPath, select, filter, expand, custom, method, businessDate, branch).GetAwaiter().GetResult();
}
/// <summary>
/// Creates a record or updates an existing record if <paramref name="entity"/> can be mathed to an existing record by
/// <c>id</c> field value or key fields values.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="entity">The record to be passed to the system.</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <paramref name="entity"/></param>
/// <param name="select">The fields of the entity to be returned from the system. (optional)</param>
/// <param name="filter">The conditions that determine which records should be selected from the system. (optional)</param>
/// <param name="expand">The linked and detail entities that should be expanded. (optional)</param>
/// <param name="custom">The fields that are not defined in the contract of the endpoint to be returned from the system. (optional)</param>
/// <param name="method">
/// Optional. Used to determine whether the system should <see cref="PutMethod.Insert"/> a new record
/// or <see cref="PutMethod.Update"/> an existing record.
/// If not specifified the default behavior is <see cref="PutMethod.Any">Any/Upsert</see>.
/// </param>
/// <param name="businessDate">
/// Optional. Specifies the new business date. If you omit this header,
/// the current date is used as the business date.
/// </param>
/// <param name="branch">
/// Optional. Specifies the new current branch.
/// The branch should be specified as a branch name.
/// If you omit this header, the branch that you specified when signing in is used as the current branch.
/// </param>
/// <param name="cancellationToken"></param>
/// <returns><see cref="Task"/> of <typeparamref name="EntityType"/></returns>
public static async Task<EntityType> PutAsync<EntityType>(this ApiClient client,
EntityType entity,
string? endpointPath = null,
string? select = null, string? filter = null, string? expand = null, string? custom = null,
PutMethod method = PutMethod.Any, DateTime? businessDate = null, string? branch = null,
CancellationToken cancellationToken = default)
where EntityType : Entity, ITopLevelEntity
{
if (entity == null)
ThrowMissingParameter(nameof(PutAsync), nameof(entity));
if (endpointPath == null)
endpointPath = GetEndpointPath(entity!);
HttpResponseMessage response = await client.CallApiAsync(
resourcePath: $"{endpointPath}/{GetEntityName(entity!)}",
method: HttpMethod.Put,
acceptType: HeaderContentType.Json,
contentType: HeaderContentType.Json,
body: entity,
queryParams: ComposeQueryParams(select, filter, expand, custom),
customHeaders: ComposePutHeaders(method, businessDate, branch),
cancellationToken: cancellationToken
).ConfigureAwait(false);
await VerifyResponseAsync<EntityType>(response, nameof(PutAsync)).ConfigureAwait(false);
return await DeserializeAsync<EntityType>(response).ConfigureAwait(false);
}
#endregion
#region Patch
/// <summary>
/// Updates an existing record if <paramref name="entity"/> can be mathed to an existing record by <c>id</c> field value or key field values.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="entity">The record to be passed to the system.</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <paramref name="entity"/></param>
/// <param name="select">The fields of the entity to be returned from the system. (optional)</param>
/// <param name="filter">The conditions that determine which records should be selected from the system. (optional)</param>
/// <param name="expand">The linked and detail entities that should be expanded. (optional)</param>
/// <param name="custom">The fields that are not defined in the contract of the endpoint to be returned from the system. (optional)</param>
/// <param name="businessDate">
/// Optional. Specifies the new business date. If you omit this header,
/// the current date is used as the business date.
/// </param>
/// <param name="branch">
/// Optional. Specifies the new current branch.
/// The branch should be specified as a branch name.
/// If you omit this header, the branch that you specified when signing in is used as the current branch.
/// </param>
/// <returns>Object of <typeparamref name="EntityType"/> type.</returns>
public static EntityType Patch<EntityType>(
this ApiClient client, EntityType entity,
string? endpointPath = null,
string? select = null, string? filter = null, string? expand = null, string? custom = null,
DateTime? businessDate = null, string? branch = null)
where EntityType : Entity, ITopLevelEntity
{
return PatchAsync(client, entity, endpointPath, select, filter, expand, custom, businessDate, branch).GetAwaiter().GetResult();
}
/// <summary>
/// Updates an existing record if <paramref name="entity"/> can be mathed to an existing record by <c>id</c> field value or key field values.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="entity">The record to be passed to the system.</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <paramref name="entity"/></param>
/// <param name="select">The fields of the entity to be returned from the system. (optional)</param>
/// <param name="filter">The conditions that determine which records should be selected from the system. (optional)</param>
/// <param name="expand">The linked and detail entities that should be expanded. (optional)</param>
/// <param name="custom">The fields that are not defined in the contract of the endpoint to be returned from the system. (optional)</param>
/// <param name="businessDate">
/// Optional. Specifies the new business date. If you omit this header,
/// the current date is used as the business date.
/// </param>
/// <param name="branch">
/// Optional. Specifies the new current branch.
/// The branch should be specified as a branch name.
/// If you omit this header, the branch that you specified when signing in is used as the current branch.
/// </param>
/// <param name="cancellationToken"></param>
/// <returns><see cref="Task"/> of <typeparamref name="EntityType"/></returns>
public static async Task<EntityType> PatchAsync<EntityType>(this ApiClient client,
EntityType entity,
string? endpointPath = null,
string? select = null, string? filter = null, string? expand = null, string? custom = null,
DateTime? businessDate = null, string? branch = null,
CancellationToken cancellationToken = default)
where EntityType : Entity, ITopLevelEntity
{
if (entity == null)
ThrowMissingParameter(nameof(PatchAsync), nameof(entity));
if (endpointPath == null)
endpointPath = GetEndpointPath(entity!);
HttpResponseMessage response = await client.CallApiAsync(
resourcePath: $"{endpointPath}/{GetEntityName(entity!)}",
method: new HttpMethod("PATCH"),
acceptType: HeaderContentType.Json,
contentType: HeaderContentType.Json,
body: entity,
queryParams: ComposeQueryParams(select, filter, expand, custom),
customHeaders: ComposePutHeaders(PutMethod.Update, businessDate, branch),
cancellationToken: cancellationToken
).ConfigureAwait(false);
await VerifyResponseAsync<EntityType>(response, nameof(PatchAsync)).ConfigureAwait(false);
return await DeserializeAsync<EntityType>(response).ConfigureAwait(false);
}
#endregion
#region PutFile
/// <summary>
/// Attaches a file to a record.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="id"> The id of the record.</param>
/// <param name="filename">The name of the file that you are going to attach with the extension.</param>
/// <param name="content"></param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <typeparamref name="EntityType"/></param>
[Obsolete("Use Acumatica.RESTClient.FileApi.FileApi.PutFile method instead")]
public static void PutFile<EntityType>(
this ApiClient client, string id, string filename, byte[] content,
string? endpointPath = null)
where EntityType : Entity, ITopLevelEntity, new()
{
PutFileAsync<EntityType>(client, new List<string>() { id }, filename, content, endpointPath).GetAwaiter().GetResult();
}
/// <summary>
/// Attaches a file to a record.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="id">The id of the record.</param>
/// <param name="filename">The name of the file that you are going to attach with the extension.</param>
/// <param name="content"></param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <typeparamref name="EntityType"/></param>
[Obsolete("Use Acumatica.RESTClient.FileApi.FileApi.PutFileAsync method instead")]
public static async Task PutFileAsync<EntityType>(
this ApiClient client, string id, string filename, byte[] content,
string? endpointPath = null)
where EntityType : Entity, ITopLevelEntity, new()
{
await PutFileAsync<EntityType>(client, new List<string>() { id }, filename, content, endpointPath).ConfigureAwait(false);
}
/// <summary>
/// Attaches a file to a record.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="ids">The values of the key fields of the record.</param>
/// <param name="filename">The name of the file that you are going to attach with the extension.</param>
/// <param name="content"></param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <typeparamref name="EntityType"/></param>
[Obsolete("Use Acumatica.RESTClient.FileApi.FileApi.PutFile method instead")]
public static void PutFile<EntityType>(
this ApiClient client, IEnumerable<string> ids, string filename, byte[] content,
string? endpointPath = null)
where EntityType : Entity, ITopLevelEntity, new()
{
PutFileAsync<EntityType>(client, ids, filename, content, endpointPath).GetAwaiter().GetResult();
}
/// <summary>
/// Attaches a file to a record.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="ids">The values of the key fields of the record.</param>
/// <param name="filename">The name of the file that you are going to attach with the extension.</param>
/// <param name="content"></param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <typeparamref name="EntityType"/></param>
/// <param name="cancellationToken"></param>
[Obsolete("Use Acumatica.RESTClient.FileApi.FileApi.PutFileAsync method instead")]
public static async Task PutFileAsync<EntityType>(
this ApiClient client, IEnumerable<string> ids, string filename, byte[] content,
string? endpointPath = null,
CancellationToken cancellationToken = default)
where EntityType : ITopLevelEntity, new()
{
if (ids == null)
ThrowMissingParameter(nameof(PutFileAsync), nameof(ids));
if (filename == null)
ThrowMissingParameter(nameof(PutFileAsync), nameof(filename));
if (endpointPath == null)
endpointPath = GetEndpointPath<EntityType>();
HttpResponseMessage response = await client.CallApiAsync(
resourcePath: $"{endpointPath}/{GetEntityName(typeof(EntityType))}/{string.Join("/", ids)}/files/{filename}",
method: HttpMethod.Put,
acceptType: HeaderContentType.Json,
contentType: HeaderContentType.OctetStream,
body: content,
cancellationToken: cancellationToken
).ConfigureAwait(false);
await VerifyResponseAsync(response, nameof(PutFileAsync)).ConfigureAwait(false);
}
#endregion
#region Get
/// <summary>
/// Retrieves a record by the values of its key fields from the system.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="key">The values of the key field of the record.</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <typeparamref name="EntityType"/></param>
/// <param name="select">The fields of the entity to be returned from the system. (optional)</param>
/// <param name="expand">The linked and detail entities that should be expanded. (optional)</param>
/// <param name="custom">The fields that are not defined in the contract of the endpoint to be returned from the system. (optional)</param>
/// <returns>Task of Entity</returns>
public static async Task<EntityType> GetByKeysAsync<EntityType>(
this ApiClient client, string key,
string? endpointPath = null,
string? select = null, string? expand = null, string? custom = null)
where EntityType : Entity, ITopLevelEntity, new()
{
return await GetByKeysAsync<EntityType>(client, new List<string> { key }, endpointPath, select, expand, custom).ConfigureAwait(false);
}
/// <summary>
/// Retrieves a record by the values of its key fields from the system.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="ids">The values of the key fields of the record.</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <typeparamref name="EntityType"/></param>
/// <param name="select">The fields of the entity to be returned from the system. (optional)</param>
/// <param name="expand">The linked and detail entities that should be expanded. (optional)</param>
/// <param name="custom">The fields that are not defined in the contract of the endpoint to be returned from the system. (optional)</param>
/// <param name="cancellationToken"></param>
/// <returns>Task of Entity</returns>
public static async Task<EntityType> GetByKeysAsync<EntityType>(
this ApiClient client, IEnumerable<string> ids,
string? endpointPath = null,
string? select = null, string? expand = null, string? custom = null,
CancellationToken cancellationToken = default)
where EntityType : Entity, ITopLevelEntity, new()
{
if (ids == null)
ThrowMissingParameter(nameof(GetByKeysAsync), nameof(ids));
if (endpointPath == null)
endpointPath = GetEndpointPath<EntityType>();
HttpResponseMessage response = await client.CallApiAsync(
resourcePath: $"{endpointPath}/{GetEntityName(typeof(EntityType))}/{string.Join("/", ids)}",
method: HttpMethod.Get,
queryParams: ComposeQueryParams(select, null, expand, custom),
acceptType: HeaderContentType.Json,
contentType: HeaderContentType.None,
cancellationToken: cancellationToken
).ConfigureAwait(false);
await VerifyResponseAsync(response, nameof(GetByKeysAsync)).ConfigureAwait(false);
return await DeserializeAsync<EntityType>(response).ConfigureAwait(false);
}
/// <summary>
/// Retrieves a record by the values of its key fields from the system.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="key">The value of the key field of the record.</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <typeparamref name="EntityType"/></param>
/// <param name="select">The fields of the entity to be returned from the system. (optional)</param>
/// <param name="expand">The linked and detail entities that should be expanded. (optional)</param>
/// <param name="custom">The fields that are not defined in the contract of the endpoint to be returned from the system. (optional)</param>
/// <returns>Entity</returns>
public static EntityType GetByKeys<EntityType>(
this ApiClient client, string key,
string? endpointPath = null,
string? select = null, string? expand = null, string? custom = null)
where EntityType : Entity, ITopLevelEntity, new()
{
return GetByKeysAsync<EntityType>(client, key, endpointPath, select, expand, custom).GetAwaiter().GetResult();
}
/// <summary>
/// Retrieves a record by the values of its key fields from the system.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="ids">The values of the key fields of the record.</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <typeparamref name="EntityType"/></param>
/// <param name="select">The fields of the entity to be returned from the system. (optional)</param>
/// <param name="expand">The linked and detail entities that should be expanded. (optional)</param>
/// <param name="custom">The fields that are not defined in the contract of the endpoint to be returned from the system. (optional)</param>
/// <returns>Entity</returns>
public static EntityType GetByKeys<EntityType>(
this ApiClient client, IEnumerable<string> ids,
string? endpointPath = null,
string? select = null, string? expand = null, string? custom = null)
where EntityType : Entity, ITopLevelEntity, new()
{
return GetByKeysAsync<EntityType>(client, ids, endpointPath, select, expand, custom).GetAwaiter().GetResult();
}
/// <summary>
/// Retrieves a record by the value of the session entity ID from the system.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="entity">The record from which the ID will be taken.</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <paramref name="entity"/></param>
/// <param name="select">The fields of the entity to be returned from the system. (optional)</param>
/// <param name="expand">The linked and detail entities that should be expanded. (optional)</param>
/// <param name="custom">The fields that are not defined in the contract of the endpoint to be returned from the system. (optional)</param>
/// <returns>Task of Entity</returns>
public static async Task<EntityType> GetByIdAsync<EntityType>(
this ApiClient client, EntityType entity,
string? endpointPath = null,
string? select = null, string? expand = null, string? custom = null)
where EntityType : Entity, ITopLevelEntity, new()
{
if (entity == null)
ThrowMissingParameter(nameof(GetById), nameof(entity));
if (entity!.ID == null)
ThrowMissingParameter(nameof(GetById), nameof(entity.ID));
return await GetByIdAsync<EntityType>(client, entity.ID, endpointPath, select, expand, custom).ConfigureAwait(false);
}
/// <summary>
/// Retrieves a record by the value of the session entity ID from the system.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="id">The session ID of the record.</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <typeparamref name="EntityType"/></param>
/// <param name="select">The fields of the entity to be returned from the system. (optional)</param>
/// <param name="expand">The linked and detail entities that should be expanded. (optional)</param>
/// <param name="custom">The fields that are not defined in the contract of the endpoint to be returned from the system. (optional)</param>
/// <param name="cancellationToken"></param>
/// <returns>Task of Entity</returns>
public static async Task<EntityType> GetByIdAsync<EntityType>(
this ApiClient client,
Guid? id,
string? endpointPath = null,
string? select = null, string? expand = null, string? custom = null,
CancellationToken cancellationToken = default)
where EntityType : Entity, ITopLevelEntity, new()
{
if (id == null)
ThrowMissingParameter(nameof(GetByIdAsync), nameof(id));
if (endpointPath == null)
endpointPath = GetEndpointPath<EntityType>();
HttpResponseMessage response = await client.CallApiAsync(
resourcePath: $"{endpointPath}/{GetEntityName(typeof(EntityType))}/{id}",
method: HttpMethod.Get,
acceptType: HeaderContentType.Json,
contentType: HeaderContentType.None,
queryParams: ComposeQueryParams(select, null, expand, custom),
cancellationToken: cancellationToken
).ConfigureAwait(false);
await VerifyResponseAsync(response, nameof(GetByIdAsync)).ConfigureAwait(false);
return await DeserializeAsync<EntityType>(response).ConfigureAwait(false);
}
/// <summary>
/// Retrieves a record by the value of the session entity ID from the system.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="entity">The object from which the ID of the record will be taken.</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <paramref name="entity"/></param>
/// <param name="select">The fields of the entity to be returned from the system. (optional)</param>
/// <param name="expand">The linked and detail entities that should be expanded. (optional)</param>
/// <param name="custom">The fields that are not defined in the contract of the endpoint to be returned from the system. (optional)</param>
/// <returns>Entity</returns>
public static EntityType GetById<EntityType>(this ApiClient client, EntityType entity,
string? endpointPath = null,
string? select = null, string? expand = null, string? custom = null)
where EntityType : Entity, ITopLevelEntity, new()
{
return GetByIdAsync<EntityType>(client, entity, endpointPath, select, expand, custom).GetAwaiter().GetResult();
}
/// <summary>
/// Retrieves a record by the value of the session entity ID from the system.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="id">The session ID of the record.</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <typeparamref name="EntityType"/></param>
/// <param name="select">The fields of the entity to be returned from the system. (optional)</param>
/// <param name="expand">The linked and detail entities that should be expanded. (optional)</param>
/// <param name="custom">The fields that are not defined in the contract of the endpoint to be returned from the system. (optional)</param>
/// <returns>Entity</returns>
public static EntityType GetById<EntityType>(this ApiClient client, Guid? id,
string? endpointPath = null,
string? select = null, string? expand = null, string? custom = null)
where EntityType : Entity, ITopLevelEntity, new()
{
return GetByIdAsync<EntityType>(client, id, endpointPath, select, expand, custom).GetAwaiter().GetResult();
}
#endregion
#region GetList
/// <summary>
/// Retrieves records that satisfy the specified conditions from the system.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <typeparamref name="EntityType"/></param>
/// <param name="select">The fields of the entity to be returned from the system. (optional)</param>
/// <param name="filter">The conditions that determine which records should be selected from the system. (optional)</param>
/// <param name="expand">The linked and detail entities that should be expanded. (optional)</param>
/// <param name="custom">The fields that are not defined in the contract of the endpoint to be returned from the system. (optional)</param>
/// <param name="skip">The number of records to be skipped from the list of returned records. (optional)</param>
/// <param name="top">The number of records to be returned from the system. (optional)</param>
/// <param name="customHeaders"></param>
/// <param name="cancellationToken"></param>
/// <returns>Task of List<Entity></returns>
public static async Task<List<EntityType>> GetListAsync<EntityType>(
this ApiClient client,
string? endpointPath = null,
string? select = null, string? filter = null, string? expand = null, string? custom = null,
int? skip = null, int? top = null, Dictionary<string, string>? customHeaders = null,
CancellationToken cancellationToken = default)
where EntityType : ITopLevelEntity, new()
{
if (endpointPath == null)
endpointPath = GetEndpointPath<EntityType>();
HttpResponseMessage response = await client.CallApiAsync(
resourcePath: $"{endpointPath}/{GetEntityName(typeof(EntityType))}",
method: HttpMethod.Get,
acceptType: HeaderContentType.Json,
contentType: HeaderContentType.None,
queryParams: ComposeQueryParams(select, filter, expand, custom, skip, top),
customHeaders: customHeaders,
cancellationToken: cancellationToken
).ConfigureAwait(false);
await VerifyResponseAsync(response, nameof(GetListAsync)).ConfigureAwait(false);
return await DeserializeAsync<List<EntityType>>(response).ConfigureAwait(false);
}
/// <summary>
/// Retrieves records that satisfy the specified conditions from the system.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <param name="client"></param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <typeparamref name="EntityType"/></param>
/// <param name="select">The fields of the entity to be returned from the system. (optional)</param>
/// <param name="filter">The conditions that determine which records should be selected from the system. (optional)</param>
/// <param name="expand">The linked and detail entities that should be expanded. (optional)</param>
/// <param name="custom">The fields that are not defined in the contract of the endpoint to be returned from the system. (optional)</param>
/// <param name="skip">The number of records to be skipped from the list of returned records. (optional)</param>
/// <param name="top">The number of records to be returned from the system. (optional)</param>
/// <param name="customHeaders"></param>
/// <returns>List<Entity></returns>
public static List<EntityType> GetList<EntityType>(
this ApiClient client,
string? endpointPath = null,
string? select = null, string? filter = null, string? expand = null, string? custom = null,
int? skip = null, int? top = null, Dictionary<string, string>? customHeaders = null)
where EntityType : ITopLevelEntity, new()
{
return GetListAsync<EntityType>(client, endpointPath, select, filter, expand, custom, skip, top, customHeaders).GetAwaiter().GetResult();
}
/// <summary>
/// Returns an IQueryable for the entity type, allowing LINQ queries to be translated to REST API calls.
/// LINQ Where clauses will be automatically converted to OData $filter parameters.
/// This overload provides deferred execution - the query is not executed until enumerated.
/// </summary>
/// <typeparam name="EntityType">The entity type</typeparam>
/// <param name="client">The API client</param>
/// <param name="asQueryable">Set to true to return IQueryable for LINQ support</param>
/// <param name="endpointPath">Optional parameter for endpoint path. If not provided, it is taken from the <typeparamref name="EntityType"/></param>
/// <param name="select">The fields of the entity to be returned from the system. (optional)</param>
/// <param name="filter">The conditions that determine which records should be selected from the system. (optional)</param>
/// <param name="expand">The linked and detail entities that should be expanded. (optional)</param>
/// <param name="custom">The fields that are not defined in the contract of the endpoint to be returned from the system. (optional)</param>
/// <param name="customHeaders">Custom headers to include in the request. (optional)</param>
/// <returns>IQueryable that can be used with LINQ</returns>
/// <example>
/// <code>
/// // Simple Where clause
/// var activeCustomers = client.GetList<Customer>(asQueryable: true)
/// .Where(c => c.Status == "Active")
/// .ToList();
///
/// // Multiple conditions
/// var customers = client.GetList<Customer>(asQueryable: true)
/// .Where(c => c.Status == "Active" && c.CustomerName.Contains("ABC"))
/// .Take(10)
/// .ToList();
///
/// // Async execution
/// var customers = await client.GetList<Customer>(asQueryable: true)
/// .Where(c => c.Status == "Active")
/// .ToListAsync();
/// </code>
/// </example>
public static IQueryable<EntityType> GetList<EntityType>(
this ApiClient client,
bool asQueryable,
string? endpointPath = null,
string? select = null,
string? filter = null,
string? expand = null,
string? custom = null,
Dictionary<string, string>? customHeaders = null)
where EntityType : ITopLevelEntity, new()
{
if (!asQueryable)
throw new ArgumentException("This overload requires asQueryable to be true. Use the other GetList overload for immediate execution.", nameof(asQueryable));
var provider = new EntityQueryProvider(client, endpointPath, select, filter, expand, custom, customHeaders);
return new EntityQueryable<EntityType>(provider);
}
#endregion
#region GetSchema
public static string GetSwagger(this ApiClient client, string endpointPath)
{
return GetSwaggerAsync(client, endpointPath).GetAwaiter().GetResult();
}
public async static Task<string> GetSwaggerAsync(this ApiClient client, string endpointPath, CancellationToken cancellationToken = default)
{
HttpResponseMessage response = await client.CallApiAsync(
resourcePath: $"{endpointPath}/swagger.json",
method: HttpMethod.Get,
acceptType: HeaderContentType.Json,
contentType: HeaderContentType.None,
cancellationToken: cancellationToken
).ConfigureAwait(false);
await VerifyResponseAsync(response, nameof(GetSwaggerAsync)).ConfigureAwait(false);
return await response.Content.ReadAsStringAsync().ConfigureAwait(false);
}
/// <summary>
/// Retrieves the schema of custom fields of the entity from the system.
/// </summary>
/// <exception cref="ApiException">Thrown when fails to make API call</exception>
/// <returns>Entity</returns>
public async static Task<EntityType> GetAdHocSchemaAsync<EntityType>(this ApiClient client,