-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathopenapi.yaml
2167 lines (2160 loc) · 88.3 KB
/
openapi.yaml
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
openapi: 3.0.1
info:
title: Audit
description: |
# Audit Presentation Spec API Documentation
## Supported Operations
Currently the Audit Presentation Spec API contains the following operations:
* Create/persist a set of audit messages
* Query all audit messages (filters include start date, end date, event category, object type(s), event action(s),
username, user ID(s), legal entity ID, schema version(s), user agent(s) and service agreement ID). Querying messages supports optional pagination, using
following query parameters: "from" and "size".
## Standard Error/Warning Codes
### Validation Errors
| Code | Description |
| ---- | ----------- |
| 1001 | Specified mandatory field omitted |
| 1002 | Format of specified field is invalid, see the JSON schema for the correct format |
| 1003 | Specified field has been truncated as it is too long to store |
| 1004 | Format of ipAddress is invalid |
license:
name: Copyright Backbase 2020
url: https://www.backbase.com
version: 1.7.17
servers:
- url: /audit-presentation-service/service-api/v2
description: The server
variables: {}
tags:
- name: audit
paths:
/audit-messages:
summary: Audit Messages
description: Endpoint to create audit messages
post:
tags:
- audit-messages
summary: Create new audit log entry that contains one or more audit messages.
Single string values that are longer than the specified limits will be truncated.
description: Create new audit log entry that contains one or more audit messages.
Single string values that are longer than the specified limits will be truncated.
operationId: postAuditmessages
requestBody:
description: Create new audit log entry that contains one or more audit messages.
Single string values that are longer than the specified limits will be truncated.
content:
application/json:
schema:
$ref: '#/components/schemas/AuditMessagesPostRequestBody'
examples:
example:
value:
auditMessages:
- messageSetId: c7cad0df-8d09-4fe7-8f50-5a662ac863e1
eventCategory: Security
objectType: Authentication
eventAction: Login
status: Successful
username: atester
userId: f8501d76-a86b-442a-a4da-43119ce5ecd4
timestamp: "2018-08-10T16:39:57.123+02:00"
eventDescription: User atester logged in
legalEntityId: 04d6b7b6-bc28-4fbe-8aec-58f954348da2
serviceAgreementId: 87418545-59db-42e4-b671-e5cf8c341ed0
ipAddress: 90.192.221.10
userAgent: Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0)
like Gecko
eventMetaData:
First Key: OTC
responses:
"201":
description: Audit message created
content:
application/json:
schema:
$ref: '#/components/schemas/AuditMessagesPostResponseBody'
examples:
example:
value:
message: Validation warnings occurred
warnings:
- message: 'Field truncated: size must be between 36 and 36'
key: auditMessages[0].messageSetId
context:
code: "1003"
"405":
description: NotAllowedError
content:
application/json:
schema:
$ref: '#/components/schemas/AuditMessagesPostResponseBody'
examples:
example:
value:
status: 405
message: 'Method not allowed : GET'
"501":
description: NotImplementedError
content:
application/json:
schema:
$ref: '#/components/schemas/AuditMessagesPostResponseBody'
examples:
example:
value:
status: 501
message: Operation not supported
"500":
description: InternalServerError
content:
application/json:
schema:
$ref: '#/components/schemas/InternalServerError'
examples:
example:
value:
message: Description of error
"400":
description: BadRequest
content:
application/json:
schema:
$ref: '#/components/schemas/BadRequestError'
examples:
example:
value:
message: Bad Request
errors:
- message: Value Exceeded. Must be between {min} and {max}.
key: common.api.shoesize
context:
max: "50"
min: "1"
/async/audit-messages:
summary: Audit Messages
description: Endpoint to create audit messages
post:
tags:
- audit-messages
summary: Create new audit log entry that contains one or more audit messages.
Single string values that are longer than the specified limits will be truncated.
description: Create new audit log entry that contains one or more audit messages.
Single string values that are longer than the specified limits will be truncated.
operationId: asyncPostAuditmessages
requestBody:
description: Create new audit log entry that contains one or more audit messages.
Single string values that are longer than the specified limits will be truncated.
content:
application/json:
schema:
$ref: '#/components/schemas/AuditMessagesPostRequestBody'
example:
auditMessages:
- messageSetId: c7cad0df-8d09-4fe7-8f50-5a662ac863e1
eventCategory: Security
objectType: Authentication
eventAction: Login
status: Successful
username: atester
userId: f8501d76-a86b-442a-a4da-43119ce5ecd4
timestamp: 2018-08-10T16:39:57.123+02:00
eventDescription: User atester logged in
legalEntityId: 04d6b7b6-bc28-4fbe-8aec-58f954348da2
serviceAgreementId: 87418545-59db-42e4-b671-e5cf8c341ed0
ipAddress: 90.192.221.10
userAgent: Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like
Gecko
eventMetaData:
First Key: OTC
responses:
"202":
description: Accepted Audit message
content:
application/json:
schema:
$ref: '#/components/schemas/UnitOfWorkResponse'
/audit-log/messages:
summary: Audit Log Messages
description: Endpoint to query audit messages
get:
tags:
- audit-log
summary: Get audit log messages in the system. Supports filtering and pagination
of retrieved audit messages based on the provided filter and pagination parameters.
description: Get audit log messages in the system. Supports filtering and pagination
of retrieved audit messages based on the provided filter and pagination parameters.
operationId: getMessages
parameters:
- name: startDate
in: query
description: Restrict results to audit logs with a timestamp of, or after,
this value.
required: false
schema:
type: string
format: date-time
examples:
example:
summary: example
value: 2017-06-28T16:41:41Z
- name: endDate
in: query
description: Restrict results to audit logs with a timestamp of, or before,
this value.
required: false
schema:
type: string
format: date-time
examples:
example:
summary: example
value: 2017-07-28T16:41:41Z
- name: eventCategories
in: query
description: Restrict results to audit logs with an event category matching
any of the supplied event categories, comma separated list.
required: false
schema:
type: array
items:
type: string
examples:
example:
summary: example
value:
- Bill Pay
- Payments
- name: status
in: query
description: Restrict results to audit logs with a status matching any of
the supplied status names, comma separated list.
required: false
schema:
type: array
items:
type: string
examples:
example:
summary: example
value:
- Initiated
- Successful
- name: ipAddresses
in: query
description: Restrict results to audit logs with an IP address matching any
of the supplied IP addresses in IPv4 format, comma separated list.
required: false
schema:
type: array
items:
type: string
examples:
example:
summary: example
value:
- 192.0.2.2
- 192.0.2.3
- name: objectType
in: query
description: Deprecated in favour of objectTypes. This query parameter will
be removed in DBS 2.17.0
required: false
schema:
type: string
examples:
example:
summary: example
value: Payment
- name: objectTypes
in: query
description: Restrict results to audit logs with an event object type matching
any of the supplied values.
required: false
schema:
type: array
items:
type: string
examples:
example:
summary: example
value:
- Ingestion
- Permissions
- name: eventAction
in: query
description: Deprecated in favour of eventActions. This query parameter will
be removed in DBS 2.17.0
required: false
schema:
type: string
examples:
example:
summary: example
value: Update
- name: eventActions
in: query
description: Restrict results to audit logs with an event action matching
any of the supplied values.
required: false
schema:
type: array
items:
type: string
examples:
example:
summary: example
value:
- Create
- Update
- name: usernames
in: query
description: Restrict results to audit logs with a username matching any of
the supplied usernames, comma separated list.
required: false
schema:
type: array
items:
type: string
examples:
example:
summary: example
value:
- User1
- User2
- name: userId
in: query
description: Deprecated in favour of userIds. This query parameter will be
removed in DBS 2.17.0
required: false
schema:
type: string
examples:
example:
summary: example
value: f8501d76-a86b-442a-a4da-43119ce5ecd4
- name: userIds
in: query
description: Restrict results to audit logs with user IDs matching any of
the supplied values.
required: false
schema:
type: array
items:
type: string
examples:
example:
summary: example
value:
- f8501d76-a86b-442a-a4da-43119ce5ecd4
- f8501d76-a86b-442a-a4da-43119ce5ecc3
- name: legalEntityIds
in: query
description: Restrict results to audit logs with a legalEntityId matching
any of the supplied legalEntityIds, comma separated list.
required: false
schema:
type: array
items:
type: string
examples:
example:
summary: example
value:
- 04d6b7b6-bc28-4fbe-8aec-58f954348da2
- 87418545-59db-42e4-b671-e5cf8c341ed0
- name: serviceAgreementId
in: query
description: Restrict results to audit logs with a service agreement ID matching
the supplied value.
required: false
schema:
type: string
examples:
example:
summary: example
value: 87418545-59db-42e4-b671-e5cf8c341ed0
- name: messageSetId
in: query
description: Restrict results to audit logs with a message set ID matching
the supplied value.
required: false
schema:
type: string
examples:
example:
summary: example
value: cb9c6d77-a32b-4921-ae5c-008dc17539b1
- name: schemaVersions
in: query
description: Restrict results to audit logs with a schema version matching
the supplied value.
required: false
schema:
type: array
items:
type: string
examples:
example:
summary: example
value:
- DBS-2.16.3
- DBS-2.16.4
- name: userAgents
in: query
description: Restrict results to audit logs with a user agents matching the
supplied value.
required: false
schema:
type: array
items:
type: string
examples:
example:
summary: example
value:
- Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko
- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML
- like Gecko) Chrome/76.0.3809.132 Safari/537.36
- name: eventMetaDataKey
in: query
description: Restrict results to audit records with a metadata key matching
the provided entry. If used in conjunction with the eventMetaDataValue parameter
the intersect of both filters is returned.
required: false
schema:
type: string
examples:
example:
summary: example
value: paymentAmount
- name: eventMetaDataValue
in: query
description: Restrict results to audit records with a metadata value matching
the provided entry. If used in conjunction with the eventMetaDataKey parameter
the intersect of both filters is returned.
required: false
schema:
type: string
examples:
example:
summary: example
value: 100.0
- name: partialMatchAgainst
in: query
description: Apply partial matching to provided fields.
required: false
schema:
type: array
items:
type: string
examples:
example:
summary: example
value:
- username
- eventMetaDataKey
- name: from
in: query
description: Page Number. Skip over pages of elements by specifying a start
value for the query
required: false
schema:
type: integer
format: int32
default: 0
examples:
example:
summary: example
value: 20
- name: size
in: query
description: Limit the number of elements on the response.
required: false
schema:
type: integer
format: int32
default: 25
examples:
example:
summary: example
value: 80
- name: orderBy
in: query
description: |
Order by field: "eventCategory", "objectType", "eventAction", "username", "userId", "timestamp", "eventDescription", "legalEntityId", "serviceAgreementId", "messageSetId"
required: false
schema:
type: string
examples:
example:
summary: example
- name: direction
in: query
description: Direction
required: false
schema:
type: string
enum:
- ASC
- DESC
default: DESC
examples:
example:
summary: example
responses:
"200":
description: No description available
content:
application/json:
schema:
$ref: '#/components/schemas/AuditLogGetResponseBody'
examples:
example:
value:
totalCount: 48
auditMessages:
- eventCategory: Payments
objectType: Standing order
eventAction: Fully Authorised
status: Successful
username: JSmart
userId: JSM12051978
messageSetId: messageSetId - Query Dates - SDD -49
timestamp: 2017-09-03T07:44:57.896Z
eventDescription: Standing order was fully authorised
legalEntityId: LE-111111111111111111-SDD-9999999951
serviceAgreementId: SE-SDD-10000000000000-Service-999951
ipAddress: 90.192.221.10
schemaVersion: DBS-2.16.3
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 49: OTC
- eventCategory: Payments
objectType: Standing order
eventAction: Part Authorised
status: Successful
username: JPetersen
userId: JPE12051978
messageSetId: messageSetId - Query Dates - SDD -48
timestamp: 2017-09-02T07:52:42.023Z
eventDescription: Standing order was part authorised
legalEntityId: LE-111111111111111111-SDD-9999999952
serviceAgreementId: SE-SDD-10000000000000-Service-999952
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 48: OTC
- eventCategory: Payments
objectType: Standing order
eventAction: Deleted
status: Successful
username: PPoe
userId: PPO12051978
messageSetId: messageSetId - Query Dates - SDD -47
timestamp: 2017-09-01T08:48:45.856Z
eventDescription: Standing order was deleted
legalEntityId: LE-111111111111111111-SDD-9999999953
serviceAgreementId: SE-SDD-10000000000000-Service-999953
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 47: OTC
- eventCategory: Payments
objectType: Standing order
eventAction: Updated
status: Successful
username: JGate
userId: JGA12051978
messageSetId: messageSetId - Query Dates - SDD -46
timestamp: 2017-08-31T08:02:56.109Z
eventDescription: Standing order was updated
legalEntityId: LE-111111111111111111-SDD-9999999954
serviceAgreementId: SE-SDD-10000000000000-Service-999954
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 46: OTC
- eventCategory: Payments
objectType: Standing order
eventAction: Created
status: Successful
username: ZAvery
userId: ZAV12051978
messageSetId: messageSetId - Query Dates - SDD -45
timestamp: 2017-08-30T06:06:03.195Z
eventDescription: Standing order was created
legalEntityId: LE-111111111111111111-SDD-9999999955
serviceAgreementId: SE-SDD-10000000000000-Service-999955
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 45: OTC
- eventCategory: Payments
objectType: Direct Debit
eventAction: Fully Authorised
status: Successful
username: AWright
userId: AWR12051978
messageSetId: messageSetId - Query Dates - SDD -44
timestamp: 2017-08-29T06:21:54.380Z
eventDescription: Direct debit payment was fully authorised
legalEntityId: LE-111111111111111111-SDD-9999999956
serviceAgreementId: SE-SDD-10000000000000-Service-999956
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 44: OTC
- eventCategory: Payments
objectType: Direct Debit
eventAction: Part Authorised
status: Successful
username: RJones
userId: RJO12051978
messageSetId: messageSetId - Query Dates - SDD -43
timestamp: 2017-08-28T08:04:56.433Z
eventDescription: Direct debit was part authorised
legalEntityId: LE-111111111111111111-SDD-9999999957
serviceAgreementId: SE-SDD-10000000000000-Service-999957
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 43: OTC
- eventCategory: Payments
objectType: Direct Debit
eventAction: Deleted
status: Successful
username: JSmart
userId: JSM12051978
messageSetId: messageSetId - Query Dates - SDD -42
timestamp: 2017-08-27T06:33:44.154Z
eventDescription: Direct debit was deleted
legalEntityId: LE-111111111111111111-SDD-9999999958
serviceAgreementId: SE-SDD-10000000000000-Service-999958
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 42: OTC
- eventCategory: Payments
objectType: Direct Debit
eventAction: Updated
status: Successful
username: KNeil
userId: KNE12051978
messageSetId: messageSetId - Query Dates - SDD -41
timestamp: 2017-08-26T08:56:56.662Z
eventDescription: Direct debit information was updated
legalEntityId: LE-111111111111111111-SDD-9999999959
serviceAgreementId: SE-SDD-10000000000000-Service-999959
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 41: OTC
- eventCategory: Payments
objectType: Direct Debit
eventAction: Created
status: Successful
username: LParr
userId: LPA12051978
messageSetId: messageSetId - Query Dates - SDD -40
timestamp: 2017-08-25T08:26:30.254Z
eventDescription: Direct debit was created
legalEntityId: LE-111111111111111111-SDD-9999999960
serviceAgreementId: SE-SDD-10000000000000-Service-999960
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 40: OTC
- eventCategory: Payments
objectType: Payments
eventAction: Fully Authorised
status: Successful
username: JSmart
userId: JSM12051978
messageSetId: messageSetId - Query Dates - SDD -39
timestamp: 2017-08-24T08:54:56.483Z
eventDescription: Payment was fully authorised
legalEntityId: LE-111111111111111111-SDD-9999999961
serviceAgreementId: SE-SDD-10000000000000-Service-999961
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 39: OTC
- eventCategory: Payments
objectType: Payments
eventAction: Part Authorised
status: Successful
username: KNeil
userId: KNE12051978
messageSetId: messageSetId - Query Dates - SDD -38
timestamp: 2017-08-23T06:52:50.045Z
eventDescription: This is record 13
legalEntityId: LE-111111111111111111-SDD-9999999962
serviceAgreementId: SE-SDD-10000000000000-Service-999962
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 38: OTC
- eventCategory: Payments
objectType: Payments
eventAction: Deleted
status: Successful
username: KNeil
userId: KNE12051978
messageSetId: messageSetId - Query Dates - SDD -37
timestamp: 2017-08-22T08:29:16.214Z
eventDescription: Payment was deleted
legalEntityId: LE-111111111111111111-SDD-9999999963
serviceAgreementId: SE-SDD-10000000000000-Service-999963
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 37: OTC
- eventCategory: Payments
objectType: Payments
eventAction: Updated
status: Successful
username: LParr
userId: LPA12051978
messageSetId: messageSetId - Query Dates - SDD -36
timestamp: 2017-08-21T06:00:50.946Z
eventDescription: Payment was updated
legalEntityId: LE-111111111111111111-SDD-9999999964
serviceAgreementId: SE-SDD-10000000000000-Service-999964
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 36: OTC
- eventCategory: Payments
objectType: Payments
eventAction: Created
status: Successful
username: JSmart
userId: JSM12051978
messageSetId: messageSetId - Query Dates - SDD -35
timestamp: 2017-08-20T06:33:45.261Z
eventDescription: Payment was created
legalEntityId: LE-111111111111111111-SDD-9999999965
serviceAgreementId: SE-SDD-10000000000000-Service-999965
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 35: OTC
- eventCategory: User Entitlement
objectType: Ingestion
eventAction: Initial Admin Ingested
status: Successful
username: ZAvery
userId: ZAV12051978
messageSetId: messageSetId - Query Dates - SDD -34
timestamp: 2017-08-19T08:57:22.604Z
eventDescription: Initial Admin was ingested by user entitlements
legalEntityId: LE-111111111111111111-SDD-9999999966
serviceAgreementId: SE-SDD-10000000000000-Service-999966
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 34: OTC
- eventCategory: User Entitlement
objectType: Ingestion
eventAction: Legal Entity Ingested
status: Successful
username: TBarnet
userId: TBA12051978
messageSetId: messageSetId - Query Dates - SDD -33
timestamp: 2017-08-18T06:14:12.718Z
eventDescription: Legal Entity was ingested by user entitlements
legalEntityId: LE-111111111111111111-SDD-9999999967
serviceAgreementId: SE-SDD-10000000000000-Service-999967
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 33: OTC
- eventCategory: User Entitlement
objectType: Ingestion
eventAction: User Ingested
status: Successful
username: AWright
userId: AWR12051978
messageSetId: messageSetId - Query Dates - SDD -32
timestamp: 2017-08-17T07:23:38.616Z
eventDescription: User was ingested by user entitlements
legalEntityId: LE-111111111111111111-SDD-9999999968
serviceAgreementId: SE-SDD-10000000000000-Service-999968
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 32: OTC
- eventCategory: User Entitlement
objectType: Service Agreement
eventAction: Permission Assigned
status: Successful
username: LParr
userId: LPA12051978
messageSetId: messageSetId - Query Dates - SDD -31
timestamp: 2017-08-16T07:58:56.350Z
eventDescription: Permission was assigned to the service agreement
legalEntityId: LE-111111111111111111-SDD-9999999969
serviceAgreementId: SE-SDD-10000000000000-Service-999969
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 31: OTC
- eventCategory: User Entitlement
objectType: Service Agreement
eventAction: User Removed
status: Successful
username: LParr
userId: LPA12051978
messageSetId: messageSetId - Query Dates - SDD -30
timestamp: 2017-08-15T08:29:09.353Z
eventDescription: User was removed from the service agreement
legalEntityId: LE-111111111111111111-SDD-9999999970
serviceAgreementId: SE-SDD-10000000000000-Service-999970
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 30: OTC
- eventCategory: User Entitlement
objectType: Service Agreement
eventAction: User Assigned
status: Successful
username: PPoe
userId: PPO12051978
messageSetId: messageSetId - Query Dates - SDD -29
timestamp: 2017-08-14T06:22:41.488Z
eventDescription: User was assigned to the service agreement
legalEntityId: LE-111111111111111111-SDD-9999999971
serviceAgreementId: SE-SDD-10000000000000-Service-999971
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 29: OTC
- eventCategory: User Entitlement
objectType: Service Agreement
eventAction: Pairs removed
status: Successful
username: KNeil
userId: KNE12051978
messageSetId: messageSetId - Query Dates - SDD -28
timestamp: 2017-08-13T07:50:48.716Z
eventDescription: Pairs were removed from the service agreement
legalEntityId: LE-111111111111111111-SDD-9999999972
serviceAgreementId: SE-SDD-10000000000000-Service-999972
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 28: OTC
- eventCategory: User Entitlement
objectType: Service Agreement
eventAction: Pairs Assigned
status: Successful
username: RJones
userId: RJO12051978
messageSetId: messageSetId - Query Dates - SDD -27
timestamp: 2017-08-12T06:37:47.491Z
eventDescription: Pairs were assigned to the service agreement
legalEntityId: LE-111111111111111111-SDD-9999999973
serviceAgreementId: SE-SDD-10000000000000-Service-999973
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 27: OTC
- eventCategory: User Entitlement
objectType: Service Agreement
eventAction: removed
status: Successful
username: JGate
userId: JGA12051978
messageSetId: messageSetId - Query Dates - SDD -26
timestamp: 2017-08-11T08:18:50.828Z
eventDescription: Service agreement was removed
legalEntityId: LE-111111111111111111-SDD-9999999974
serviceAgreementId: SE-SDD-10000000000000-Service-999974
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 26: OTC
- eventCategory: User Entitlement
objectType: Service Agreement
eventAction: Updated
status: Successful
username: RJones
userId: RJO12051978
messageSetId: messageSetId - Query Dates - SDD -25
timestamp: 2017-08-10T06:54:01.985Z
eventDescription: Service agreement was updated
legalEntityId: LE-111111111111111111-SDD-9999999975
serviceAgreementId: SE-SDD-10000000000000-Service-999975
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 25: OTC
- eventCategory: User Entitlement
objectType: Service Agreement
eventAction: Added
status: Successful
username: LParr
userId: LPA12051978
messageSetId: messageSetId - Query Dates - SDD -24
timestamp: 2017-08-09T07:49:40.964Z
eventDescription: Service agreement was added
legalEntityId: LE-1111111111111111111-SDD-999999976
serviceAgreementId: SE-SDD-10000000000000-Service-999976
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 24: OTC
- eventCategory: User Entitlement
objectType: Permissions
eventAction: Date Group Removed
status: Successful
username: TBarnet
userId: TBA12051978
messageSetId: messageSetId - Query Dates - SDD -23
timestamp: 2017-08-08T07:34:51.154Z
eventDescription: Data group was removed from permissions
legalEntityId: LE-111111111111111111-SDD-9999999977
serviceAgreementId: SE-SDD-10000000000000-Service-999977
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 23: OTC
- eventCategory: User Entitlement
objectType: Permissions
eventAction: Data Group Assigned
status: Successful
username: LParr
userId: LPA12051978
messageSetId: messageSetId - Query Dates - SDD -22
timestamp: 2017-08-07T06:57:18.169Z
eventDescription: Data group was assigned new permissions
legalEntityId: LE-111111111111111111-SDD-9999999978
serviceAgreementId: SE-SDD-10000000000000-Service-999978
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 22: OTC
- eventCategory: User Entitlement
objectType: Permissions
eventAction: Removed from Data Group
status: Successful
username: AWright
userId: AWR12051978
messageSetId: messageSetId - Query Dates - SDD -21
timestamp: 2017-08-06T06:33:33.044Z
eventDescription: Permissions were removed from the data group
legalEntityId: LE-111111111111111111-SDD-9999999979
serviceAgreementId: SE-SDD-10000000000000-Service-999979
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 21: OTC
- eventCategory: User Entitlement
objectType: Permissions
eventAction: Assigned to Data Group
status: Successful
username: KNeil
userId: KNE12051978
messageSetId: messageSetId - Query Dates - SDD -20
timestamp: 2017-08-05T08:32:00.726Z
eventDescription: Permissions were assigned to the data group
legalEntityId: LE-111111111111111111-SDD-9999999980
serviceAgreementId: SE-SDD-10000000000000-Service-999980
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 20: OTC
- eventCategory: User Entitlement
objectType: Permissions
eventAction: Removed from Function Group
status: Successful
username: ZAvery
userId: ZAV12051978
messageSetId: messageSetId - Query Dates - SDD -19
timestamp: 2017-08-04T06:38:51.765Z
eventDescription: Remissions were removed from the function
group
legalEntityId: LE-111111111111111111-SDD-9999999981
serviceAgreementId: SE-SDD-10000000000000-Service-999981
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14
(KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
eventMetaData:
First Key for Audit Message 19: OTC
- eventCategory: User Entitlement
objectType: Permissions
eventAction: Assigned to Function Group
status: Successful
username: PPoe
userId: PPO12051978
messageSetId: messageSetId - Query Dates - SDD -18
timestamp: 2017-08-03T08:59:22.220Z
eventDescription: Permissions were assigned to the function
group
legalEntityId: LE-111111111111111111-SDD-9999999982
serviceAgreementId: SE-SDD-10000000000000-Service-999982